From 7e41cb6dfeb76c20b6e985c04f67b6c56ee7f891 Mon Sep 17 00:00:00 2001 From: mutantmonkey Date: Wed, 10 Apr 2019 22:05:40 -0700 Subject: [PATCH] Remove GDK_SCALE stuff from appvm-xpra This just seems to cause problems now. Everything works fine with this removed. --- appvm-xpra | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/appvm-xpra b/appvm-xpra index 47f489b..d0ef0c2 100755 --- a/appvm-xpra +++ b/appvm-xpra @@ -158,16 +158,6 @@ if __name__ == '__main__': p = xpra_attach(cid, xpra_title) if p != 0: - if len(os.environ.get('GDK_SCALE', '')) > 0: - app = "env GDK_SCALE={0} GDK_DPI_SCALE={1} {2}".format( - os.environ['GDK_SCALE'], - os.environ.get('GDK_DPI_SCALE', '1'), - app) - elif len(os.environ.get('GDK_DPI_SCALE', '')) > 0: - app = "env GDK_DPI_SCALE={0} {1}".format( - os.environ.get('GDK_DPI_SCALE', '1'), - app) - scp_if_exists('.config/gtk-2.0/gtkrc', xpra_host, user, scp_args) scp_if_exists('.config/gtk-3.0/settings.ini', xpra_host, user, scp_args) -- 2.51.2