projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a6c6a3
)
els_tooltip: Only call ecore_x_pointer_xy_get() if we're in X
author
Daniel Willmann
<d.willmann@samsung.com>
Tue, 11 Jun 2013 11:48:52 +0000
(12:48 +0100)
committer
Daniel Willmann
<d.willmann@samsung.com>
Tue, 11 Jun 2013 13:33:53 +0000
(14:33 +0100)
We don't want to call X functions (and segfault) if X is not actually
running.
Backport
83dc18bf0c601a89c71f3183b735c1b7b9a34014
Signed-off-by: Daniel Willmann <d.willmann@samsung.com>
src/lib/els_tooltip.c
patch
|
blob
|
history
diff --git
a/src/lib/els_tooltip.c
b/src/lib/els_tooltip.c
index 677367b96a0b9a58f8eb4f3c5103e54cfbe69335..f8d0bf9666c0fd03d1b99552f23c197ffd0f1341 100644
(file)
--- a/
src/lib/els_tooltip.c
+++ b/
src/lib/els_tooltip.c
@@
-396,7
+396,8
@@
_elm_tooltip_reconfigure(Elm_Tooltip *tt)
Evas_Object *win = elm_object_top_widget_get(tt->owner);
#ifdef HAVE_ELEMENTARY_X
Ecore_X_Window xwin = elm_win_xwindow_get(win);
- ecore_x_pointer_xy_get(xwin, &px, &py);
+ if (xwin)
+ ecore_x_pointer_xy_get(xwin, &px, &py);
#endif
elm_win_screen_position_get(win, &x, &y);
ox += x;