removed options not needed for config data for GUI support for both old and new GUIs
This commit is contained in:
parent
93ad6b588a
commit
a85cb92196
3 changed files with 1 additions and 9 deletions
|
@ -21,7 +21,6 @@ class EmaneBypassModel(emanemodel.EmaneModel):
|
|||
_id="none",
|
||||
_type=ConfigDataTypes.BOOL,
|
||||
default="0",
|
||||
options=["True", "False"],
|
||||
label="There are no parameters for the bypass model.",
|
||||
)
|
||||
]
|
||||
|
|
|
@ -36,21 +36,18 @@ class SessionConfig(ConfigurableManager, ConfigurableOptions):
|
|||
_id="enablerj45",
|
||||
_type=ConfigDataTypes.BOOL,
|
||||
default="1",
|
||||
options=["On", "Off"],
|
||||
label="Enable RJ45s",
|
||||
),
|
||||
Configuration(
|
||||
_id="preservedir",
|
||||
_type=ConfigDataTypes.BOOL,
|
||||
default="0",
|
||||
options=["On", "Off"],
|
||||
label="Preserve session dir",
|
||||
),
|
||||
Configuration(
|
||||
_id="enablesdt",
|
||||
_type=ConfigDataTypes.BOOL,
|
||||
default="0",
|
||||
options=["On", "Off"],
|
||||
label="Enable SDT3D output",
|
||||
),
|
||||
Configuration(
|
||||
|
|
|
@ -906,11 +906,7 @@ class Ns2ScriptedMobility(WayPointMobility):
|
|||
label="refresh time (ms)",
|
||||
),
|
||||
Configuration(
|
||||
_id="loop",
|
||||
_type=ConfigDataTypes.BOOL,
|
||||
default="1",
|
||||
options=["On", "Off"],
|
||||
label="loop",
|
||||
_id="loop", _type=ConfigDataTypes.BOOL, default="1", label="loop"
|
||||
),
|
||||
Configuration(
|
||||
_id="autostart",
|
||||
|
|
Loading…
Reference in a new issue