File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1863,7 +1863,7 @@ bool Note::acceptDrop(EditData& data) const
18631863 || (type == ElementType::FRET_DIAGRAM)
18641864 || (type == ElementType::FIGURED_BASS)
18651865 || (type == ElementType::LYRICS)
1866- || e->isSpanner ();
1866+ || (type != ElementType::TIE && e->isSpanner () );
18671867}
18681868
18691869// ---------------------------------------------------------
Original file line number Diff line number Diff line change @@ -98,12 +98,12 @@ bool TieSegment::edit(EditData& ed)
9898{
9999 SlurTie* sl = tie ();
100100
101- if (ed.key == Qt::Key_X) {
101+ if (ed.key == Qt::Key_X && !ed. modifiers ) {
102102 sl->setSlurDirection (sl->up () ? Direction::DOWN : Direction::UP);
103103 sl->layout ();
104104 return true ;
105105 }
106- if (ed.key == Qt::Key_Home) {
106+ if (ed.key == Qt::Key_Home && !ed. modifiers ) {
107107 ups (ed.curGrip ).off = PointF ();
108108 sl->layout ();
109109 return true ;
You can’t perform that action at this time.
0 commit comments