Skip to content

Commit

Permalink
#1132 don't resize initial display if "resize-display" is off
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@13753 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Sep 16, 2016
1 parent 74bf72b commit aa8f501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/scripts/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ def kill_dbus():
# This import is delayed because the module depends on gtk:
from xpra.x11.bindings.window_bindings import X11WindowBindings
X11Window = X11WindowBindings()
if starting or starting_desktop and not clobber:
if (starting or starting_desktop) and not clobber and opts.resize_display:
try:
from xpra.x11.bindings.randr_bindings import RandRBindings
#try to set a reasonable display size:
Expand Down

0 comments on commit aa8f501

Please sign in to comment.