From 87d0e097bbbfb895e622cf970f236bcb108167f6 Mon Sep 17 00:00:00 2001 From: phkahler <14852918+phkahler@users.noreply.github.com> Date: Wed, 22 Nov 2023 16:38:58 -0500 Subject: [PATCH] CTRL-TAB un/hides the toolbar --- src/graphicswin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphicswin.cpp b/src/graphicswin.cpp index e91f094..38095c8 100644 --- a/src/graphicswin.cpp +++ b/src/graphicswin.cpp @@ -101,7 +101,7 @@ const MenuEntry Menu[] = { { 2, N_("Dimensions in &Inches"), Command::UNITS_INCHES, 0, KR, mView }, { 2, N_("Dimensions in &Feet and Inches"), Command::UNITS_FEET_INCHES, 0, KR, mView }, { 1, NULL, Command::NONE, 0, KN, NULL }, -{ 1, N_("Show &Toolbar"), Command::SHOW_TOOLBAR, 0, KC, mView }, +{ 1, N_("Show &Toolbar"), Command::SHOW_TOOLBAR, C|'\t', KC, mView }, { 1, N_("Show Property Bro&wser"), Command::SHOW_TEXT_WND, '\t', KC, mView }, { 1, NULL, Command::NONE, 0, KN, NULL }, { 1, N_("&Full Screen"), Command::FULL_SCREEN, C|F|11, KC, mView },