Skip to content

Commit

Permalink
#1193 / #1102: dpi was wrongly doubled here too
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@12668 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 25, 2016
1 parent 42c261e commit fd09cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/ui_client_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1362,7 +1362,7 @@ def make_hello(self):
#command line (or config file) override supplied:
if self.dpi>0:
#scale it:
dpi = self.cx(self.cy(2.0*self.dpi))
dpi = self.cx(self.cy(self.dpi))
xdpi = self.cx(dpi)
ydpi = self.cy(dpi)
else:
Expand Down

0 comments on commit fd09cb5

Please sign in to comment.