gl/x11: store the correct dimension from the resize events
authorMatthew Waters <matthew@centricular.com>
Thu, 17 Sep 2015 06:05:21 +0000 (16:05 +1000)
committerMatthew Waters <matthew@centricular.com>
Thu, 17 Sep 2015 10:21:43 +0000 (20:21 +1000)
small typo s/width/height/

gst-libs/gst/gl/x11/gstglwindow_x11.c

index e9d5391..20b327d 100644 (file)
@@ -571,7 +571,7 @@ gst_gl_window_x11_handle_event (GstGLWindowX11 * window_x11)
               event.xconfigure.height);
 
         window_x11->current_width = event.xconfigure.width;
-        window_x11->current_height = event.xconfigure.width;
+        window_x11->current_height = event.xconfigure.height;
         break;
       }
 
@@ -599,7 +599,7 @@ gst_gl_window_x11_handle_event (GstGLWindowX11 * window_x11)
         }
 
         window_x11->current_width = event.xexpose.width;
-        window_x11->current_height = event.xexpose.width;
+        window_x11->current_height = event.xexpose.height;
         break;
 
       case VisibilityNotify: