Skip to content

Commit

Permalink
fix: exception when blocking ui interactions
Browse files Browse the repository at this point in the history
  • Loading branch information
geigi committed Mar 1, 2024
1 parent 7796bd9 commit 7cf0361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cozy/ui/main_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def __init_actions(self):
self.create_action("about", self.about)
self.create_action("quit", self.quit, ["<primary>q", "<primary>w"])
self.create_action("prefs", self.show_prefs, ["<primary>comma"])
self.create_action("scan", self.scan)
self.scan_action = self.create_action("scan", self.scan)
self.play_pause_action = self.create_action("play_pause", self.play_pause, ["space"])

self.hide_offline_action = Gio.SimpleAction.new_stateful(
Expand Down

0 comments on commit 7cf0361

Please sign in to comment.