Skip to content

Commit

Permalink
Fix to read keyboard_sync option propery.
Browse files Browse the repository at this point in the history
  • Loading branch information
unisons authored and totaam committed Aug 15, 2024
1 parent c581bcb commit 600d55f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/server/keyboard_config_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_info(self) -> dict[str, Any]:

def parse_options(self, props) -> int:
oldsync = self.sync
self.sync = props.boolget("keyboard_sync", True)
self.sync = props.boolget("sync", True)
return int(oldsync != self.sync)

def get_hash(self) -> str:
Expand Down

0 comments on commit 600d55f

Please sign in to comment.