Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tomotools
tomwer
Commits
268b99c4
Commit
268b99c4
authored
Jul 26, 2021
by
payno
Committed by
Henri Payno
May 03, 2022
Browse files
[gui][intensity] hide mode others than None and Chebychev for now
parent
56b7cf14
Changes
1
Hide whitespace changes
Inline
Side-by-side
tomwer/gui/reconstruction/normalization/intensity.py
View file @
268b99c4
...
...
@@ -406,7 +406,16 @@ class _NormIntensityOptions(qt.QWidget):
# mode
self
.
_modeCB
=
qt
.
QComboBox
(
self
)
for
mode
in
Method
:
self
.
_modeCB
.
addItem
(
mode
.
value
)
if
mode
in
(
Method
.
LSQR_SPLINE
,
Method
.
MANUAL_SCALAR
,
Method
.
DATASET
,
Method
.
AUTO_ROI
,
Method
.
MANUAL_ROI
,
):
continue
else
:
self
.
_modeCB
.
addItem
(
mode
.
value
)
self
.
layout
().
addWidget
(
qt
.
QLabel
(
"mode:"
,
self
),
0
,
0
,
1
,
1
)
self
.
layout
().
addWidget
(
self
.
_modeCB
,
0
,
1
,
1
,
1
)
self
.
_lockButton
=
PadlockButton
(
self
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment