Skip to content

Commit

Permalink
Never show alt mode inside graphs or pluginmode
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Jan 19, 2025
1 parent 443ce80 commit 8f918f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Canvas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ int Canvas::getOverlays() const

auto const overlaysTree = SettingsFile::getInstance()->getValueTree().getChildWithName("Overlays");

auto const altModeEnabled = overlaysTree.getProperty("alt_mode");
auto const altModeEnabled = overlaysTree.getProperty("alt_mode") && !isGraph;

if (!locked.getValue()) {
overlayState = overlaysTree.getProperty("edit");
Expand Down

0 comments on commit 8f918f0

Please sign in to comment.