Skip to content

Commit

Permalink
#693: fix bug introduced by r7600: we must paint the screen (present_…
Browse files Browse the repository at this point in the history
…fbo) with the unscaled dimensions!

git-svn-id: https://xpra.org/svn/Xpra/trunk@7804 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Sep 25, 2014
1 parent 1012273 commit ff70367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/gl/gl_window_backing_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ff70367

Please sign in to comment.