make pane index pop a little for Mike Stein

This commit is contained in:
Kartik K. Agaram 2023-11-20 23:46:22 -08:00
parent d63e060731
commit 10e99377d5
2 changed files with 3 additions and 1 deletions

View File

@ -1,9 +1,10 @@
draw_menu = function()
App.color(Menu_background)
love.graphics.rectangle('fill', 0,0, App.screen.width, Menu_bottom)
App.color(Normal_color)
local x = Menu_left+5
App.color(White)
love.graphics.print(Current_pane_index, x+5, Menu_top+5+2)
App.color(Normal_color)
x = x+5 + App.width(tostring(Current_pane_index)) + 10
-- main buttons
x = run_button(x)

1
0079-White Normal file
View File

@ -0,0 +1 @@
White = {r=1, g=1, b=1}