Skip to content

Commit

Permalink
Fix Sync OS Check
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinyzu committed Apr 14, 2024
1 parent e3edb78 commit 396caee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdp_patches/input/sync_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(self, pid: Optional[int] = None, browser: Optional[sync_browsers] =
self._wait_for_window()

# Include Windows Scale Factor for every browser except DriverlessSyncChrome
if not isinstance(browser, DriverlessSyncChrome):
if is_windows and not isinstance(browser, DriverlessSyncChrome):
self._base.include_windows_scale_factor()

@property
Expand Down

0 comments on commit 396caee

Please sign in to comment.