Skip to content

Commit

Permalink
kernelwindow.py: Fix callback arguments.
Browse files Browse the repository at this point in the history
Fixes #12746.
  • Loading branch information
mtwebster committed Feb 17, 2025
1 parent 263b7ac commit b967926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usr/lib/linuxmint/mintUpdate/kernelwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def __init__(self, callback=None):
self.ui_stack.set_visible_child_name("intro_page")

# Refresh window on kernel type selection change
def on_kernel_type_combo_changed(widget):
def on_kernel_type_combo_changed(self, widget):
global CONFIGURED_KERNEL_TYPE
CONFIGURED_KERNEL_TYPE = "-" + widget.get_active_text()
self.settings.set_string("selected-kernel-type", CONFIGURED_KERNEL_TYPE)
Expand Down

0 comments on commit b967926

Please sign in to comment.