Skip to content

Commit b967926

Browse files
committedFeb 17, 2025
kernelwindow.py: Fix callback arguments.
Fixes #12746.
1 parent 263b7ac commit b967926

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎usr/lib/linuxmint/mintUpdate/kernelwindow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def __init__(self, callback=None):
239239
self.ui_stack.set_visible_child_name("intro_page")
240240

241241
# Refresh window on kernel type selection change
242-
def on_kernel_type_combo_changed(widget):
242+
def on_kernel_type_combo_changed(self, widget):
243243
global CONFIGURED_KERNEL_TYPE
244244
CONFIGURED_KERNEL_TYPE = "-" + widget.get_active_text()
245245
self.settings.set_string("selected-kernel-type", CONFIGURED_KERNEL_TYPE)

0 commit comments

Comments
 (0)