This commit is contained in:
Roberto Alsina 2020-02-03 15:40:49 -03:00
parent 31b9d38d0b
commit 71b596eacb
1 changed files with 3 additions and 5 deletions

View File

@ -255,10 +255,8 @@ class Window(QObject):
self.scale_changed() # Trigger scale labels update
def detect_scaling_mode(self, monitor):
"""Given a monitor's data, try to guess what scaling
"""Given a monitor's data, try to guess what scaling
mode it's using."""
def choose_a_monitor(self):
"""Choose what monitor to select by default.
@ -269,9 +267,9 @@ class Window(QObject):
candidate = None
for name, mon in self.xrandr_info.items():
if not mon['enabled']:
if not mon["enabled"]:
continue
if mon['primary']:
if mon["primary"]:
return name
candidate = name
return candidate