From c3ab68cd930c080d2fc26dbb68d24ebf1700bfba Mon Sep 17 00:00:00 2001 From: Emma Broman Date: Wed, 26 Jan 2022 11:16:58 +0100 Subject: [PATCH] Fix faulty ScriptScheduler property info identifiers --- src/scripting/scriptscheduler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripting/scriptscheduler.cpp b/src/scripting/scriptscheduler.cpp index 82165b4fd7..f82c9306f8 100644 --- a/src/scripting/scriptscheduler.cpp +++ b/src/scripting/scriptscheduler.cpp @@ -34,7 +34,7 @@ namespace { constexpr openspace::properties::Property::PropertyInfo EnabledInfo = { - "EnabledInfo", + "Enabled", "Enabled", "This enables or disables the ScriptScheduler. If disabled, no scheduled scripts " "will be executed. If enabled, scheduled scripts will be executed at their given " @@ -42,7 +42,7 @@ namespace { }; constexpr openspace::properties::Property::PropertyInfo ShouldRunAllTimeJumpInfo = { - "ShouldRunAllTimeJumpInfo", + "ShouldRunAllTimeJump", "Should Run All Time Jump", "If 'true': In a time jump, all scheduled scripts between the old time and the " "new time is executed. If 'false': In a time jump, no scripts scheduled between "