From 0c7623e9ac4bc224c61a5cd4be1f425a2364e180 Mon Sep 17 00:00:00 2001 From: Yinan Zhou Date: Tue, 14 May 2024 13:12:24 -0400 Subject: [PATCH] Remove automatic staff changing for custos and accid Neon issue https://github.com/DDMAL/Neon/issues/1208 --- src/editortoolkit_neume.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/editortoolkit_neume.cpp b/src/editortoolkit_neume.cpp index f7455216bb1..d17546ce48a 100644 --- a/src/editortoolkit_neume.cpp +++ b/src/editortoolkit_neume.cpp @@ -521,7 +521,6 @@ bool EditorToolkitNeume::Drag(std::string elementId, int x, int y) zone->ShiftByXY(x, -y); AdjustPitchFromPosition(element); - ChangeStaff(elementId); } else if (element->HasInterface(INTERFACE_PITCH) || element->Is(NEUME) || element->Is(SYLLABLE)) { Layer *layer = dynamic_cast(element->GetFirstAncestor(LAYER)); @@ -714,7 +713,6 @@ bool EditorToolkitNeume::Drag(std::string elementId, int x, int y) assert(zone); zone->ShiftByXY(x, -y); } - ChangeStaff(elementId); } else if (element->Is(DIVLINE)) { DivLine *divLine = dynamic_cast(element);