fix #281362: allow shift+drag to rearrange palette +collect_artifacts

This commit is contained in:
Marc Sabatella 2019-06-21 15:53:36 -06:00
parent 17d9c99378
commit 4efdd0e7b0

View file

@ -873,7 +873,7 @@ void Palette::leaveEvent(QEvent*)
if (currentIdx != -1) {
QRect r = idxRect(currentIdx);
PaletteBox* pb = mscore->getPaletteBox();
if (!pb->getKeyboardNavigation())
if (!pb->getKeyboardNavigation() && !(QGuiApplication::keyboardModifiers() & Qt::ShiftModifier))
currentIdx = -1;
update(r);
}