Removed Background color from spectrometer view since this would interfere with the system theme.

This commit is contained in:
jupfi 2024-03-29 18:36:58 +01:00
parent 36a277c26d
commit 3a455428e5

View file

@ -25,11 +25,11 @@ class SpectrometerView(ModuleView):
self.blank = QWidget()
self._ui_form.stackedWidgetSettings.setStyleSheet(
"QStackedWidget { background-color: #fafafa; border: 2px solid #000; }"
"QStackedWidget { border: 2px solid #000; }"
)
self._ui_form.stackedWidgetPulseProgrammer.setStyleSheet(
"QStackedWidget { background-color: #fafafa; border: 2px solid #000; }"
"QStackedWidget { border: 2px solid #000; }"
)
def on_active_spectrometer_changed(self, module):