highlight zoom out hotkey

This commit is contained in:
Kartik K. Agaram 2023-06-10 13:08:53 -07:00
parent cefdfb1c6d
commit 1976dd0b48
1 changed files with 6 additions and 1 deletions

View File

@ -10,6 +10,11 @@ draw_menu_bar = function()
draw_manifest_navigator()
return
end
if Zoomed_out == nil then
add_hotkey_to_menu('ctrl+g: zoom out')
else
add_hotkey_to_menu('ctrl+g: undo zoom out')
end
add_hotkey_to_menu('ctrl+l: load definition')
add_hotkey_to_menu('ctrl+n: new definition')
add_hotkey_to_menu('ctrl+d: delete definition')
@ -18,4 +23,4 @@ draw_menu_bar = function()
add_hotkey_to_menu('ctrl+z ctrl+y: undo/redo')
add_hotkey_to_menu('ctrl+x ctrl+c ctrl+v: cut/copy/paste')
add_hotkey_to_menu('ctrl+= ctrl+- ctrl+0: zoom')
end
end