Skip to content

Commit

Permalink
fix(zq): 'View Map' favorite command skipping menu
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyV99 authored and connorjclark committed Mar 31, 2024
1 parent 9909f5c commit 0a21ba8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zq/zq_hotkey.cpp
Expand Up @@ -152,7 +152,7 @@ char const* get_hotkey_name(uint hkey)
case ZQKEY_CAUTO_HEIGHTMINUS: return "Autocombo Height -";
case ZQKEY_CAUTO_HEIGHTPLUS: return "Autocombo Height +";
case ZQKEY_CURR_LAYER_HL: return "Highlight Current Layer";
case ZQKEY_VIEW_MAP: return "Quick View Map";
case ZQKEY_VIEW_MAP: return "View Map";
case ZQKEY_DRAWMODE_NORMAL: return "Drawing Mode (Normal)";
case ZQKEY_DRAWMODE_ALIAS: return "Drawing Mode (Alias)";
case ZQKEY_DRAWMODE_POOL: return "Drawing Mode (Pool)";
Expand Down Expand Up @@ -1409,7 +1409,7 @@ int run_hotkey(uint hkey)
onToggleHighlightLayer();
break;
case ZQKEY_VIEW_MAP:
onViewMapEx(true);
onViewMapEx(false);
break;
case ZQKEY_DRAWMODE_NORMAL:
onDrawingModeNormal();
Expand Down

0 comments on commit 0a21ba8

Please sign in to comment.