diff -r fecc847180b9 -r 680150fd2b8c src/eric7/Preferences/ConfigurationPages/Ui_DebuggerGeneralPage.py --- a/src/eric7/Preferences/ConfigurationPages/Ui_DebuggerGeneralPage.py Sat Sep 28 16:51:48 2024 +0200 +++ b/src/eric7/Preferences/ConfigurationPages/Ui_DebuggerGeneralPage.py Sat Sep 28 17:47:10 2024 +0200 @@ -1,6 +1,6 @@ # Form implementation generated from reading ui file 'src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.ui' # -# Created by: PyQt6 UI code generator 6.7.0 +# Created by: PyQt6 UI code generator 6.7.1 # # WARNING: Any manual changes made to this file will be lost when pyuic6 is # run again. Do not edit this file unless you know what you are doing. @@ -330,6 +330,9 @@ self.horizontalLayout_3.setStretch(0, 2) self.horizontalLayout_3.setStretch(1, 1) self.verticalLayout_6.addWidget(self.groupBox_2) + self.showOnlyCheckBox = QtWidgets.QCheckBox(parent=self.groupBox_11) + self.showOnlyCheckBox.setObjectName("showOnlyCheckBox") + self.verticalLayout_6.addWidget(self.showOnlyCheckBox) self.groupBox_10 = QtWidgets.QGroupBox(parent=self.groupBox_11) self.groupBox_10.setObjectName("groupBox_10") self.verticalLayout_5 = QtWidgets.QVBoxLayout(self.groupBox_10) @@ -382,7 +385,8 @@ DebuggerGeneralPage.setTabOrder(self.exceptionShellCheckBox, self.maxSizeSpinBox) DebuggerGeneralPage.setTabOrder(self.maxSizeSpinBox, self.backgroundNewButton) DebuggerGeneralPage.setTabOrder(self.backgroundNewButton, self.backgroundChangedButton) - DebuggerGeneralPage.setTabOrder(self.backgroundChangedButton, self.autoViewSourcecodeCheckBox) + DebuggerGeneralPage.setTabOrder(self.backgroundChangedButton, self.showOnlyCheckBox) + DebuggerGeneralPage.setTabOrder(self.showOnlyCheckBox, self.autoViewSourcecodeCheckBox) def retranslateUi(self, DebuggerGeneralPage): _translate = QtCore.QCoreApplication.translate @@ -480,6 +484,8 @@ self.label_bgChangedItems.setText(_translate("DebuggerGeneralPage", "Changed elements:")) self.label_bgFirstLoaded.setText(_translate("DebuggerGeneralPage", "First time opened elements:")) self.backgroundNewButton.setToolTip(_translate("DebuggerGeneralPage", "Select the background color for elements which are loaded for the first time.")) + self.showOnlyCheckBox.setToolTip(_translate("DebuggerGeneralPage", "Select to make the \'Show Only\' option the default one.")) + self.showOnlyCheckBox.setText(_translate("DebuggerGeneralPage", "\'Show Only\' as default")) self.groupBox_10.setTitle(_translate("DebuggerGeneralPage", "Local Variables Viewer")) self.autoViewSourcecodeCheckBox.setToolTip(_translate("DebuggerGeneralPage", "Automatically view source code when user changes the callstack frame in the callstack viewer.")) self.autoViewSourcecodeCheckBox.setText(_translate("DebuggerGeneralPage", "Automatically view source code"))