mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-22 01:34:21 +00:00
Audio host demo fix.
This commit is contained in:
parent
1c70c74a61
commit
ef36a42ee6
1 changed files with 4 additions and 4 deletions
|
|
@ -339,10 +339,10 @@ void MainHostWindow::getCommandInfo (const CommandID commandID, ApplicationComma
|
|||
switch (commandID)
|
||||
{
|
||||
case CommandIDs::open:
|
||||
result.setInfo ("Open...),
|
||||
"Opens a filter graph file),
|
||||
result.setInfo ("Open...",
|
||||
"Opens a filter graph file",
|
||||
category, 0);
|
||||
result.defaultKeypresses.add (KeyPress ('o), ModifierKeys::commandModifier, 0));
|
||||
result.defaultKeypresses.add (KeyPress ('o', ModifierKeys::commandModifier, 0));
|
||||
break;
|
||||
|
||||
case CommandIDs::save:
|
||||
|
|
@ -353,7 +353,7 @@ void MainHostWindow::getCommandInfo (const CommandID commandID, ApplicationComma
|
|||
break;
|
||||
|
||||
case CommandIDs::saveAs:
|
||||
result.setInfo ("Save As...),
|
||||
result.setInfo ("Save As...",
|
||||
"Saves a copy of the current graph to a file",
|
||||
category, 0);
|
||||
result.defaultKeypresses.add (KeyPress ('s', ModifierKeys::shiftModifier | ModifierKeys::commandModifier, 0));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue