projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
350d04d
)
e_policy: Fix incorrect inequality direction of layer
45/325445/1
author
Junseok Kim
<juns.kim@samsung.com>
Mon, 12 May 2025 11:42:43 +0000
(20:42 +0900)
committer
Tizen Window System
<tizen.windowsystem@gmail.com>
Tue, 10 Jun 2025 09:37:49 +0000
(18:37 +0900)
Change-Id: I8c0e21d6ad50a0d35c4ea10c2650809837a94993
src/bin/windowmgr/e_policy.c
patch
|
blob
|
history
diff --git
a/src/bin/windowmgr/e_policy.c
b/src/bin/windowmgr/e_policy.c
index aaf31e0798e51b5c06eb3ff3bfe75303558d71f1..03e6ffc68e3f43cfce9b01bf4f792347ef587ae1 100644
(file)
--- a/
src/bin/windowmgr/e_policy.c
+++ b/
src/bin/windowmgr/e_policy.c
@@
-486,7
+486,7
@@
_e_policy_cb_hook_client_eval_pre_new_client(void *d EINA_UNUSED, E_Client *ec)
ELOGF("NOTI", " |ec->layer:%d object->layer:%d", ec, ec->layer, ly);
if ((ly != ec->layer) ||
(ec->layer < E_LAYER_CLIENT_NOTIFICATION_LOW) ||
- (ec->layer
<
E_LAYER_CLIENT_NOTIFICATION_TOP))
+ (ec->layer
>
E_LAYER_CLIENT_NOTIFICATION_TOP))
e_client_layer_set(ec, ec->layer);
}
}