diff --git a/libmscore/edit.cpp b/libmscore/edit.cpp index 145e05459eaf1..faaff2c009e98 100644 --- a/libmscore/edit.cpp +++ b/libmscore/edit.cpp @@ -1435,6 +1435,10 @@ void Score::cmdAddOttava(OttavaType type) cr2 = cr1; Ottava* ottava = new Ottava(this); ottava->setOttavaType(type); + if (type == OttavaType::OTTAVA_8VB/* || type == OttavaType::OTTAVA_15MB || type == OttavaType::OTTAVA_22MB*/) { + ottava->setPlacement(Placement::BELOW); + ottava->styleChanged(); + } ottava->setTrack(cr1->track()); ottava->setTrack2(cr1->track()); ottava->setTick(cr1->tick()); @@ -1453,7 +1457,10 @@ void Score::cmdAddOttava(OttavaType type) Ottava* ottava = new Ottava(this); ottava->setOttavaType(type); - + if (type == OttavaType::OTTAVA_8VB/* || type == OttavaType::OTTAVA_15MB || type == OttavaType::OTTAVA_22MB*/) { + ottava->setPlacement(Placement::BELOW); + ottava->styleChanged(); + } ottava->setTrack(cr1->track()); ottava->setTrack2(cr1->track()); ottava->setTick(cr1->tick()); diff --git a/mscore/menus.cpp b/mscore/menus.cpp index 69d3de93929de..f6d32639eba5a 100644 --- a/mscore/menus.cpp +++ b/mscore/menus.cpp @@ -1414,6 +1414,7 @@ PalettePanel* MuseScore::newLinesPalettePanel() ottava = new Ottava(gscore); ottava->setOttavaType(OttavaType::OTTAVA_22MB); ottava->setLen(w); + ottava->setPlacement(Placement::BELOW); ottava->styleChanged(); sp->append(ottava, QT_TRANSLATE_NOOP("Palette", "22ma bassa"));