We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3e4d17 commit aa24e33Copy full SHA for aa24e33
qubes_config/global_config/global_config.py
@@ -438,6 +438,12 @@ def perform_setup(self):
438
self.builder.get_object('thisdevice_scrolled_window'),
439
])
440
441
+ # workaround the uncomfortable behavior with comboboxes: combobox
442
+ # should not change item ID on random scrolling around
443
+ for obj in self.builder.get_objects():
444
+ if isinstance(obj, (Gtk.ComboBox, Gtk.ComboBoxText)):
445
+ obj.connect('scroll-event', lambda *args: True)
446
+
447
self.progress_bar_dialog.update_progress(1)
448
self.progress_bar_dialog.hide()
449
self.progress_bar_dialog.destroy()
0 commit comments