From ff70367445ccd30a1da8ec4227ce1d54c4cd7694 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 25 Sep 2014 04:27:07 +0000 Subject: [PATCH] #693: fix bug introduced by r7600: we must paint the screen (present_fbo) with the unscaled dimensions! git-svn-id: https://xpra.org/svn/Xpra/trunk@7804 3bb7dfac-3a0b-4e04-842a-767bc560f471 --- src/xpra/client/gl/gl_window_backing_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xpra/client/gl/gl_window_backing_base.py b/src/xpra/client/gl/gl_window_backing_base.py index c8c274f2cf..6b684a0b9b 100644 --- a/src/xpra/client/gl/gl_window_backing_base.py +++ b/src/xpra/client/gl/gl_window_backing_base.py @@ -602,7 +602,7 @@ def gl_paint_planar(self, img, x, y, enc_width, enc_height, width, height, callb y_scale = float(height)/enc_height self.render_planar_update(x, y, enc_width, enc_height, x_scale, y_scale) # Present it on screen - self.present_fbo(x, y, enc_width, enc_height) + self.present_fbo(x, y, width, height) fire_paint_callbacks(callbacks, True) except Exception as e: log.error("%s.gl_paint_planar(..) error: %s", self, e, exc_info=True)