Adapt the visibility settings for all properties

This commit is contained in:
Alexander Bock
2023-04-15 09:33:31 +02:00
committed by GitHub
parent 1ef6cb0c02
commit ca916877b2
152 changed files with 2098 additions and 894 deletions

View File

@@ -37,14 +37,16 @@ namespace {
constexpr openspace::properties::Property::PropertyInfo NameSenderInfo = {
"SpoutName",
"Spout Sender Name",
"This value sets the Spout sender to use a specific name"
"This value sets the Spout sender to use a specific name",
openspace::properties::Property::Visibility::AdvancedUser
};
constexpr openspace::properties::Property::PropertyInfo NameReceiverInfo = {
"SpoutName",
"Spout Receiver Name",
"This value explicitly sets the Spout receiver to use a specific name. If this "
"is not a valid name, an empty image is used"
"is not a valid name, an empty image is used",
openspace::properties::Property::Visibility::AdvancedUser
};
constexpr openspace::properties::Property::PropertyInfo SelectionInfo = {
@@ -52,13 +54,15 @@ namespace {
"Spout Selection",
"This property displays all available Spout sender on the system. If one them is "
"selected, its value is stored in the 'SpoutName' property, overwriting its "
"previous value"
"previous value",
openspace::properties::Property::Visibility::AdvancedUser
};
constexpr openspace::properties::Property::PropertyInfo UpdateInfo = {
"UpdateSelection",
"Update Selection",
"If this property is trigged, the 'SpoutSelection' options will be refreshed"
"If this property is trigged, the 'SpoutSelection' options will be refreshed",
openspace::properties::Property::Visibility::AdvancedUser
};
} // namespace