mirror of
https://github.com/nqrduck/nqrduck-spectrometer.git
synced 2024-11-09 12:30:01 +00:00
Typo.
This commit is contained in:
parent
a9fee217c3
commit
f593c82ec5
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class BaseSpectrometerView(ModuleView):
|
||||||
for category_count, category in enumerate(self.module.model.settings.keys()):
|
for category_count, category in enumerate(self.module.model.settings.keys()):
|
||||||
logger.debug("Adding settings for category: %s", category)
|
logger.debug("Adding settings for category: %s", category)
|
||||||
category_layout = QVBoxLayout()
|
category_layout = QVBoxLayout()
|
||||||
category_label = QLabel(f"{category}:" % category)
|
category_label = QLabel(f"{category}:")
|
||||||
category_label.setStyleSheet("font-weight: bold;")
|
category_label.setStyleSheet("font-weight: bold;")
|
||||||
row = category_count // 2
|
row = category_count // 2
|
||||||
column = category_count % 2
|
column = category_count % 2
|
||||||
|
|
Loading…
Reference in a new issue