Skip to content

Commit

Permalink
fix video bottom edge width calculation
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@12948 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jul 3, 2016
1 parent bdf0973 commit 84cba0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/server/window/window_video_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ def process_damage_region(self, damage_time, x, y, w, h, coding, options, flush=
if dw>0:
WindowSource.process_damage_region(self, damage_time, x+w-dw, y, dw, h, self.edge_encoding, options, flush=1+int(dh>0))
if dh>0:
WindowSource.process_damage_region(self, damage_time, x, y+h-dh, x+w, dh, self.edge_encoding, options, flush=1)
WindowSource.process_damage_region(self, damage_time, x, y+h-dh, w-dw, dh, self.edge_encoding, options, flush=1)
#use the unmasked dimensions to prevent us restriding for nothing:
WindowSource.process_damage_region(self, damage_time, x, y, w, h, coding, options, flush=flush)

Expand Down

0 comments on commit 84cba0e

Please sign in to comment.