1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-08-02 22:19:37 +08:00

Compare commits

...

2 Commits

2 changed files with 22 additions and 4 deletions
+22 -3
View File
@@ -104,6 +104,7 @@ class _DateInputContainer(QWidget):
): ):
super().__init__(parent) super().__init__(parent)
self.setupUi() self.setupUi()
def setupUi( def setupUi(
@@ -153,10 +154,16 @@ class _TimeInputContainer(QWidget):
): ):
super().__init__(parent) super().__init__(parent)
self.setupUi()
def setupUi(
self
):
self.TimeEdit = QTimeEdit(self) self.TimeEdit = QTimeEdit(self)
self.TimeEdit.setDisplayFormat("HH:mm") self.TimeEdit.setDisplayFormat("HH:mm")
self.TimeEdit.setFixedHeight(25) self.TimeEdit.setFixedHeight(25)
Layout = QHBoxLayout(self) Layout = QHBoxLayout(self)
Layout.setContentsMargins(0, 0, 0, 0) Layout.setContentsMargins(0, 0, 0, 0)
Layout.addWidget(self.TimeEdit) Layout.addWidget(self.TimeEdit)
@@ -176,6 +183,13 @@ class _DateOffsetContainer(QWidget):
): ):
super().__init__(parent) super().__init__(parent)
self.setupUi()
def setupUi(
self
):
self.SpinBox = QSpinBox(self) self.SpinBox = QSpinBox(self)
self.SpinBox.setRange(0, 99999) self.SpinBox.setRange(0, 99999)
self.SpinBox.setFixedHeight(25) self.SpinBox.setFixedHeight(25)
@@ -183,7 +197,6 @@ class _DateOffsetContainer(QWidget):
for display, data in DATE_OFFSET_OPTIONS: for display, data in DATE_OFFSET_OPTIONS:
self.UnitCombo.addItem(display, data) self.UnitCombo.addItem(display, data)
self.UnitCombo.setFixedHeight(25) self.UnitCombo.setFixedHeight(25)
Layout = QHBoxLayout(self) Layout = QHBoxLayout(self)
Layout.setContentsMargins(0, 0, 0, 0) Layout.setContentsMargins(0, 0, 0, 0)
Layout.setSpacing(4) Layout.setSpacing(4)
@@ -220,11 +233,17 @@ class _TimeOffsetContainer(QWidget):
): ):
super().__init__(parent) super().__init__(parent)
self.setupUi()
def setupUi(
self
):
self.SpinBox = QSpinBox(self) self.SpinBox = QSpinBox(self)
self.SpinBox.setRange(0, 99999) self.SpinBox.setRange(0, 99999)
self.SpinBox.setSuffix(" 小时") self.SpinBox.setSuffix(" 小时")
self.SpinBox.setFixedHeight(25) self.SpinBox.setFixedHeight(25)
Layout = QHBoxLayout(self) Layout = QHBoxLayout(self)
Layout.setContentsMargins(0, 0, 0, 0) Layout.setContentsMargins(0, 0, 0, 0)
Layout.addWidget(self.SpinBox) Layout.addWidget(self.SpinBox)
-1
View File
@@ -388,7 +388,6 @@ class ALSettingsWidget(CenterOnParentMixin, QWidget, Ui_ALSettingsWidget):
idx = self.CustomThemeComboBox.findData(file_id) idx = self.CustomThemeComboBox.findData(file_id)
if idx >= 0: if idx >= 0:
self.CustomThemeComboBox.setCurrentIndex(idx) self.CustomThemeComboBox.setCurrentIndex(idx)
self.updateCustomThemeStatus()
self.updateCustomThemeInfo() self.updateCustomThemeInfo()
except Exception as e: except Exception as e:
QMessageBox.warning( QMessageBox.warning(