summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
Diffstat (limited to 'libvo')
-rw-r--r--libvo/x11_common.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libvo/x11_common.c b/libvo/x11_common.c
index f442b9639c..4d2f4f445b 100644
--- a/libvo/x11_common.c
+++ b/libvo/x11_common.c
@@ -1057,6 +1057,10 @@ int vo_x11_check_events(Display * mydisplay)
{
int key;
+#ifdef HAVE_NEW_GUI
+ if ( use_gui ) { break; }
+#endif
+
XLookupString(&Event.xkey, buf, sizeof(buf), &keySym,
&stat);
#ifdef XF86XK_AudioPause
@@ -1065,10 +1069,6 @@ int vo_x11_check_events(Display * mydisplay)
key =
((keySym & 0xff00) !=
0 ? ((keySym & 0x00ff) + 256) : (keySym));
-#ifdef HAVE_NEW_GUI
- if ((use_gui) && (key == wsEnter))
- break;
-#endif
vo_x11_putkey(key);
ret |= VO_EVENT_KEYPRESS;
}