From d1db41b7b814f05c3c5621fb66732cbbd741b60f Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 17 Sep 2022 23:53:05 -0700 Subject: [PATCH] bugfix: draw menu after everything else This is stupid; I did it right in pensieve.love to begin with. --- source.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source.lua b/source.lua index 5b92d1e..3b16b9d 100644 --- a/source.lua +++ b/source.lua @@ -221,7 +221,6 @@ function source.switch_to_file(filename) end function source.draw() - source.draw_menu_bar() edit.draw(Editor_state) if Show_log_browser_side then -- divider @@ -230,6 +229,7 @@ function source.draw() -- log_browser.draw(Log_browser_state) end + source.draw_menu_bar() end function source.update(dt)