We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75c3ddb commit b7cd947Copy full SHA for b7cd947
1 file changed
Source/Toolbar.cpp
@@ -1476,7 +1476,10 @@ class PowerButton final : public Component
1476
toggle.onClick = [this] { toggle.getToggleState() ? pd->startDSP() : pd->releaseDSP(); };
1477
1478
chevron.setButtonText(Icons::ThinDown);
1479
- chevron.onClick = [this] { showCallout(); };
+ chevron.onClick = [this] {
1480
+ chevronHovered = false; // Otherwise it hangs in hovered state
1481
+ showCallout();
1482
+ };
1483
1484
toggle.addMouseListener(this, false);
1485
chevron.addMouseListener(this, false);
0 commit comments