summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
Diffstat (limited to 'libvo')
-rw-r--r--libvo/x11_common.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/libvo/x11_common.c b/libvo/x11_common.c
index ea57f06373..aeb8a6069f 100644
--- a/libvo/x11_common.c
+++ b/libvo/x11_common.c
@@ -844,8 +844,12 @@ int vo_x11_check_events(Display * mydisplay)
// if (vo_fs && Event.xconfigure.width != vo_screenwidth && Event.xconfigure.height != vo_screenheight) break;
if (vo_window == None)
break;
- vo_x11_update_geometry();
- ret |= VO_EVENT_RESIZE;
+ {
+ int old_w = vo_dwidth, old_h = vo_dheight;
+ vo_x11_update_geometry();
+ if (vo_dwidth != old_w || vo_dheight != old_h)
+ ret |= VO_EVENT_RESIZE;
+ }
break;
case KeyPress:
{