Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/frontend/StarBaseScriptPane.cpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2023-07-30 01:28:43 +1000
committerKae <80987908+Novaenia@users.noreply.github.com>2023-07-30 01:28:43 +1000
commit31f5816e8a545a86f22df6d1a95015ce611f0784 (patch)
treefa4e28bbd2aba6d164bfd2d675da32f5a3d4ba7e /source/frontend/StarBaseScriptPane.cpp
parentffd1507f725582bd51fe3064263b14ecd7db5edf (diff)
Update StarBaseScriptPane.cpp
Diffstat (limited to 'source/frontend/StarBaseScriptPane.cpp')
-rw-r--r--source/frontend/StarBaseScriptPane.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/frontend/StarBaseScriptPane.cpp b/source/frontend/StarBaseScriptPane.cpp
index ca9a89c..6db092d 100644
--- a/source/frontend/StarBaseScriptPane.cpp
+++ b/source/frontend/StarBaseScriptPane.cpp
@@ -25,7 +25,7 @@ BaseScriptPane::BaseScriptPane(Json config) : Pane(), m_rawConfig(config) {
m_config = assets->fetchJson(config);
}
- m_interactive = config.getBool("interactive", true);
+ m_interactive = m_config.getBool("interactive", true);
m_reader = make_shared<GuiReader>();
m_reader->registerCallback("close", [this](Widget*) { dismiss(); });