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:
161b67a
)
e-comp-wl: Don't call keyboard_modifiers_update twice
author
Chris Michael
<cp.michael@samsung.com>
Tue, 14 Jul 2015 14:17:23 +0000
(10:17 -0400)
committer
Chris Michael
<cp.michael@samsung.com>
Tue, 14 Jul 2015 17:29:02 +0000
(13:29 -0400)
e_comp_wl_input_keyboard_state_update already makes a call to
e_comp_wl_input_keyboard_modifeirs_update so there is no need to call
it twice on key up/down events.
Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/bin/e_comp_wl.c
patch
|
blob
|
history
diff --git
a/src/bin/e_comp_wl.c
b/src/bin/e_comp_wl.c
index 700d15982771f14da1eea03064287d556607e5ba..0f92fd2eec569daf2cfbb91b1610598085a8e5bb 100644
(file)
--- a/
src/bin/e_comp_wl.c
+++ b/
src/bin/e_comp_wl.c
@@
-904,7
+904,7
@@
_e_comp_wl_cb_key_down(void *event)
}
}
- e_comp_wl_input_keyboard_modifiers_update();
+ /* e_comp_wl_input_keyboard_modifiers_update(); */
}
static void
@@
-952,7
+952,7
@@
_e_comp_wl_cb_key_up(void *event)
}
}
- e_comp_wl_input_keyboard_modifiers_update();
+ /* e_comp_wl_input_keyboard_modifiers_update(); */
}
static void