...
This commit is contained in:
parent
7536ce57cc
commit
4817a4559b
1 changed files with 2 additions and 2 deletions
|
|
@ -151,10 +151,10 @@ def response_from_kitty(self, boss: Boss, window: Window | None, payload_get: Pa
|
|||
if existing is None:
|
||||
raise RemoteControlErrorWithoutTraceback(
|
||||
f'The OS Window {os_window_id} has no panel configuration')
|
||||
for option in seen_options.keys():
|
||||
for option in seen_options:
|
||||
for config in cli_option_to_lsc_configs_map[option]:
|
||||
existing[config] = getattr(lsc, config)
|
||||
if seen_options.get('edge', None) == 'background':
|
||||
if seen_options.get('edge') == 'background':
|
||||
existing['type'] = GLFW_LAYER_SHELL_BACKGROUND
|
||||
if existing['hide_on_focus_loss']:
|
||||
existing['focus_policy'] = GLFW_FOCUS_ON_DEMAND
|
||||
|
|
|
|||
Loading…
Reference in a new issue