fix #227826: can't use Del key in text edit mode
This commit is contained in:
parent
e6d9ddcf3f
commit
b829860ad3
1 changed files with 1 additions and 2 deletions
|
@ -1550,7 +1550,6 @@ void MuseScore::selectionChanged(SelState selectionState)
|
||||||
bool enable = selectionState != SelState::NONE;
|
bool enable = selectionState != SelState::NONE;
|
||||||
getAction("cut")->setEnabled(enable);
|
getAction("cut")->setEnabled(enable);
|
||||||
getAction("copy")->setEnabled(enable);
|
getAction("copy")->setEnabled(enable);
|
||||||
getAction("delete")->setEnabled(enable);
|
|
||||||
getAction("select-similar-range")->setEnabled(selectionState == SelState::RANGE);
|
getAction("select-similar-range")->setEnabled(selectionState == SelState::RANGE);
|
||||||
if (pianorollEditor)
|
if (pianorollEditor)
|
||||||
pianorollEditor->changeSelection(selectionState);
|
pianorollEditor->changeSelection(selectionState);
|
||||||
|
|
Loading…
Reference in a new issue