Fix screen resolution detection in-office
This commit is contained in:
parent
8f5e1e282a
commit
c58e1d4e5c
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ class Config(GeneralConfig):
|
|||
{'x': 1920, 'y': 0, 'width': 1080, 'height': qtile_height},
|
||||
]
|
||||
# Dual 1680x1050
|
||||
elif qtile_width == 3360 and qtile_height == 1050:
|
||||
elif qtile_width == 3360 and (qtile_height > 1040 and qtile_height <= 1050):
|
||||
cls.screen_kwargs = [
|
||||
{'x': 0, 'y': 0, 'width': 1680, 'height': 1050},
|
||||
{'x': 1680, 'y': 0, 'width': 1680, 'height': 1050},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue