Use options argument in UI for objective
This commit is contained in:
parent
01012f52a3
commit
94a9c2be8f
1 changed files with 13 additions and 1 deletions
|
|
@ -546,7 +546,19 @@ class SimulatedCamera(BaseCamera):
|
|||
property_control_for(self, "blob_density", label="Sample Density"),
|
||||
property_control_for(self, "colour", label="Sample Colour"),
|
||||
property_control_for(self, "noise_level", label="Noise Level"),
|
||||
property_control_for(self, "objective", label="Objective Magnification"),
|
||||
property_control_for(
|
||||
self,
|
||||
"objective",
|
||||
label="Objective Magnification",
|
||||
options={
|
||||
"4x": 4,
|
||||
"10x": 10,
|
||||
"20x": 20,
|
||||
"40x": 40,
|
||||
"60x": 60,
|
||||
"100x": 100,
|
||||
},
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue