diff --git a/Editor/foleys_ToolBox.cpp b/Editor/foleys_ToolBox.cpp index b047d0be..ea7755a5 100644 --- a/Editor/foleys_ToolBox.cpp +++ b/Editor/foleys_ToolBox.cpp @@ -96,7 +96,11 @@ ToolBox::ToolBox (juce::Component* parentToUse, MagicGUIBuilder& builderToContro view.addItem ("Right", true, positionOption == right, [&]() { setToolboxPosition (right); }); view.addItem ("Detached", true, positionOption == detached, [&]() { setToolboxPosition (detached); }); view.addSeparator(); - view.addItem ("AlwaysOnTop", true, isAlwaysOnTop(), [&]() { setAlwaysOnTop ( ! isAlwaysOnTop() ); }); + view.addItem ("AlwaysOnTop", true, isAlwaysOnTop(), [&]() { + setAlwaysOnTop ( ! isAlwaysOnTop() ); + if (auto* properties = appProperties.getUserSettings()) + properties->setValue ("alwaysOnTop", isAlwaysOnTop() ? "true" : "false"); + }); view.showMenuAsync (juce::PopupMenu::Options()); }; diff --git a/VERSION.md b/VERSION.md index 3fc452a3..a6660f95 100644 --- a/VERSION.md +++ b/VERSION.md @@ -1,8 +1,8 @@ PluginGuiMagic - Versions history ================================ -1.3.6 ------ +1.3.6 - 27.12.2021 +------------------ - Allow Containers to scroll if over-full and configured accordingly - Added drumpad component