From 946c125fd4606c7a882e9d3762424fc2b9b66056 Mon Sep 17 00:00:00 2001 From: rxi Date: Sun, 24 May 2020 08:04:47 +0100 Subject: [PATCH] Changed `core.redraw` to be set to `true` by default As the window isn't created until the first frame is drawn this is required to assure the window is ever shown without relying on the assumption that some other part of the program would have set this to true --- data/core/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/data/core/init.lua b/data/core/init.lua index e63e2a4..3fd1acd 100644 --- a/data/core/init.lua +++ b/data/core/init.lua @@ -93,6 +93,7 @@ function core.init() core.docs = {} core.threads = setmetatable({}, { __mode = "k" }) core.project_files = {} + core.redraw = true core.root_view = RootView() core.command_view = CommandView()