Skip to content

Commit

Permalink
#1247 don't resize desktop server screen to match client's
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@13577 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Sep 6, 2016
1 parent 6bcd81f commit 83e349c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/xpra/x11/desktop_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,10 @@ def _process_close_window(self, proto, packet):


def set_best_screen_size(self):
root_w, root_h = self.root_window.get_size()
return root_w, root_h
return self.root_window.get_size()

def _process_desktop_size(self, packet):
return

def calculate_desktops(self):
pass
Expand Down
3 changes: 1 addition & 2 deletions src/xpra/x11/x11_server_base.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# coding=utf8
# This file is part of Xpra.
# Copyright (C) 2011 Serviware (Arthur Huillet, <ahuillet@serviware.com>)
# Copyright (C) 2010-2014 Antoine Martin <antoine@devloop.org.uk>
# Copyright (C) 2010-2016 Antoine Martin <antoine@devloop.org.uk>
# Copyright (C) 2008 Nathaniel Smith <njs@pobox.com>
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any
# later version. See the file COPYING for details.

import os
import sys
import time
import gtk.gdk

Expand Down

0 comments on commit 83e349c

Please sign in to comment.