diff --git a/fonts/mscore/MusescoreIcon.ttf b/fonts/mscore/MusescoreIcon.ttf index b2b5ec61dc..f16bda2c68 100644 Binary files a/fonts/mscore/MusescoreIcon.ttf and b/fonts/mscore/MusescoreIcon.ttf differ diff --git a/src/framework/ui/view/iconcodes.h b/src/framework/ui/view/iconcodes.h index f8d089478c..51638fad87 100644 --- a/src/framework/ui/view/iconcodes.h +++ b/src/framework/ui/view/iconcodes.h @@ -406,6 +406,8 @@ public: TIE_OUTSIDE = 0xF45D, TIE_INSIDE = 0xF45E, + TIE_CHORD_OUTSIDE = 0xF466, + TIE_CHORD_INSIDE = 0xF467, NONE = 0xFFFF }; diff --git a/src/notation/qml/MuseScore/NotationScene/internal/EditStyle/TiePlacementSelector.qml b/src/notation/qml/MuseScore/NotationScene/internal/EditStyle/TiePlacementSelector.qml index 842708dac2..ff1caa0c43 100644 --- a/src/notation/qml/MuseScore/NotationScene/internal/EditStyle/TiePlacementSelector.qml +++ b/src/notation/qml/MuseScore/NotationScene/internal/EditStyle/TiePlacementSelector.qml @@ -70,8 +70,8 @@ Rectangle { RadioButtonGroup { model: [ - { iconCode: IconCode.TIE_INSIDE, value: 1, title: qsTrc("inspector", "Inside") }, - { iconCode: IconCode.TIE_OUTSIDE, value: 2, title: qsTrc("inspector", "Outside") } + { iconCode: IconCode.TIE_CHORD_INSIDE, value: 1, title: qsTrc("inspector", "Inside") }, + { iconCode: IconCode.TIE_CHORD_OUTSIDE, value: 2, title: qsTrc("inspector", "Outside") } ] delegate: FlatRadioButton {