Skip to content

Commit

Permalink
change the shortcut for sforzato to accent
Browse files Browse the repository at this point in the history
not sure we really want this though, as it invalidates existing shortcut
settings?
  • Loading branch information
Jojo-Schmitz committed Jun 24, 2019
1 parent 3f0f95e commit 03975b0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libmscore/cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3660,7 +3660,7 @@ void Score::cmd(const QAction* a, EditData& ed)
{ "add-staccato", [this]{ addArticulation(SymId::articStaccatoAbove); }},
{ "add-tenuto", [this]{ addArticulation(SymId::articTenutoAbove); }},
{ "add-marcato", [this]{ addArticulation(SymId::articMarcatoAbove); }},
{ "add-sforzato", [this]{ addArticulation(SymId::articAccentAbove); }},
{ "add-accent", [this]{ addArticulation(SymId::articAccentAbove); }},
{ "add-trill", [this]{ addArticulation(SymId::ornamentTrill); }},
{ "add-up-bow", [this]{ addArticulation(SymId::stringsUpBow); }},
{ "add-down-bow", [this]{ addArticulation(SymId::stringsDownBow); }},
Expand Down
2 changes: 1 addition & 1 deletion mscore/data/shortcuts-Mac.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
<seq>Shift+O</seq>
</SC>
<SC>
<key>add-sforzato</key>
<key>add-accent</key>
<seq>Shift+V</seq>
</SC>
<SC>
Expand Down
2 changes: 1 addition & 1 deletion mscore/data/shortcuts.xml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
<seq>Shift+O</seq>
</SC>
<SC>
<key>add-sforzato</key>
<key>add-accent</key>
<seq>Shift+V</seq>
</SC>
<SC>
Expand Down
2 changes: 1 addition & 1 deletion mscore/data/shortcuts_AZERTY.xml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
<seq>Shift+O</seq>
</SC>
<SC>
<key>add-sforzato</key>
<key>add-accent</key>
<seq>Shift+V</seq>
</SC>
<SC>
Expand Down
2 changes: 1 addition & 1 deletion mscore/shortcut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ Shortcut Shortcut::_sc[] = {
{
MsWidget::SCORE_TAB,
STATE_NORMAL | STATE_NOTE_ENTRY,
"add-sforzato",
"add-accent",
QT_TRANSLATE_NOOP("action","Accent"),
QT_TRANSLATE_NOOP("action","Toggle accent"),
0,
Expand Down

0 comments on commit 03975b0

Please sign in to comment.