diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-30 01:28:43 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-30 01:28:43 +1000 |
commit | 31f5816e8a545a86f22df6d1a95015ce611f0784 (patch) | |
tree | fa4e28bbd2aba6d164bfd2d675da32f5a3d4ba7e /source/frontend/StarBaseScriptPane.cpp | |
parent | ffd1507f725582bd51fe3064263b14ecd7db5edf (diff) |
Update StarBaseScriptPane.cpp
Diffstat (limited to 'source/frontend/StarBaseScriptPane.cpp')
-rw-r--r-- | source/frontend/StarBaseScriptPane.cpp | 2 |
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(); }); |