diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-09-17 23:53:05 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-09-17 23:53:05 -0700 |
commit | d1db41b7b814f05c3c5621fb66732cbbd741b60f (patch) | |
tree | 974d78193a4de678e44acf72be821ea38c25c529 | |
parent | 36bde53d410012c07c2e9fc543ee49c06443b4d7 (diff) | |
download | view.love-d1db41b7b814f05c3c5621fb66732cbbd741b60f.tar.gz |
bugfix: draw menu after everything else
This is stupid; I did it right in pensieve.love to begin with.
-rw-r--r-- | source.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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) |