Browse Source

Improved a menu label in the standalone filter window

tags/2021-05-28
tpoole 8 years ago
parent
commit
7e9b8fd923
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/juce_audio_plugin_client/Standalone/juce_StandaloneFilterWindow.h

+ 2
- 2
modules/juce_audio_plugin_client/Standalone/juce_StandaloneFilterWindow.h View File

@@ -211,7 +211,7 @@ public:
true, false));
o.content->setSize (500, 450);
o.dialogTitle = TRANS("Audio Settings");
o.dialogTitle = TRANS("Audio/MIDI Settings");
o.dialogBackgroundColour = Colour (0xfff0f0f0);
o.escapeKeyTriggersCloseButton = true;
o.useNativeTitleBar = true;
@@ -488,7 +488,7 @@ public:
void buttonClicked (Button*) override
{
PopupMenu m;
m.addItem (1, TRANS("Audio Settings..."));
m.addItem (1, TRANS("Audio/MIDI Settings..."));
m.addSeparator();
m.addItem (2, TRANS("Save current state..."));
m.addItem (3, TRANS("Load a saved state..."));


Loading…
Cancel
Save