Skip to content

Commit

Permalink
fix widget scope
Browse files Browse the repository at this point in the history
  • Loading branch information
jardon committed Oct 1, 2024
1 parent 6c298ce commit 9ffae44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vanilla_first_setup/defaults/keyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,6 @@ def step_id(self):

def __on_check_button_toggled(self, __radio_button, widget):
print("PRESSED")
self.selected_keyboard["layout"] = self.widget.__layout
self.selected_keyboard["variant"] = self.widget.__variant
self.selected_keyboard["layout"] = widget.__layout
self.selected_keyboard["variant"] = widget.__variant
self.btn_next.set_sensitive(True)

0 comments on commit 9ffae44

Please sign in to comment.