1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: increase dimensions of connection window
Some people have reported they cannot see the Start button, and it is
not possible to resize the window. This is likely different for everyone,
depending on WM theme, DPI and font size, but it seems it's often just a
little bit that's missing. Set more generous values.
Author: Florian Schlichting <fsfs@debian.org>
Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760071
--- a/ConnectionWindow.py
+++ b/ConnectionWindow.py
@@ -51,8 +51,8 @@
self.enablePMP = False
if re.match('(?:open|free|net)bsd|linux',sys.platform):
- width = 165
- height = 350
+ width = 250
+ height = 450
xval1 = 155
xval2 = 250
else:
|