- installed an eventFilter for the Sliders in the Preferences tab such that only if a slider has focus the mouse wheel will change its value
- in Preferences made sure that the changes of the scrollbar no longer interfere with signalling changes
This commit is contained in:
@@ -6562,7 +6562,7 @@ class App(QtCore.QObject):
|
||||
|
||||
# detect changes in the preferences
|
||||
for idx in range(self.ui.pref_tab_area.count()):
|
||||
for tb in self.ui.pref_tab_area.widget(idx).findChildren(QtCore.QObject):
|
||||
for tb in self.ui.pref_tab_area.widget(idx).findChildren(QtWidgets.QWidget):
|
||||
try:
|
||||
try:
|
||||
tb.textEdited.disconnect(self.preferencesUiManager.on_preferences_edited)
|
||||
|
||||
Reference in New Issue
Block a user