From 31f5816e8a545a86f22df6d1a95015ce611f0784 Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Sun, 30 Jul 2023 01:28:43 +1000 Subject: [PATCH] Update StarBaseScriptPane.cpp --- source/frontend/StarBaseScriptPane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); m_reader->registerCallback("close", [this](Widget*) { dismiss(); });