mirror of
https://github.com/ralsina/xrandroll.git
synced 2024-11-22 02:52:23 +00:00
lint
This commit is contained in:
parent
31b9d38d0b
commit
71b596eacb
@ -255,10 +255,8 @@ class Window(QObject):
|
|||||||
self.scale_changed() # Trigger scale labels update
|
self.scale_changed() # Trigger scale labels update
|
||||||
|
|
||||||
def detect_scaling_mode(self, monitor):
|
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."""
|
mode it's using."""
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def choose_a_monitor(self):
|
def choose_a_monitor(self):
|
||||||
"""Choose what monitor to select by default.
|
"""Choose what monitor to select by default.
|
||||||
@ -269,9 +267,9 @@ class Window(QObject):
|
|||||||
|
|
||||||
candidate = None
|
candidate = None
|
||||||
for name, mon in self.xrandr_info.items():
|
for name, mon in self.xrandr_info.items():
|
||||||
if not mon['enabled']:
|
if not mon["enabled"]:
|
||||||
continue
|
continue
|
||||||
if mon['primary']:
|
if mon["primary"]:
|
||||||
return name
|
return name
|
||||||
candidate = name
|
candidate = name
|
||||||
return candidate
|
return candidate
|
||||||
|
Loading…
Reference in New Issue
Block a user