"Ped. *" has the line set to visible in 3.0 in advanced workspace , was invisible in 2.x

• Feb 3, 2019 - 18:21
Reported version
3.0
Priority
P1 - High
Type
Functional
Frequency
Once
Severity
S3 - Major
Reproducibility
Always
Status
closed
Regression
Yes
Workaround
Yes
Project

Add a "Ped. *" line, and check Inspector: it shows the line to be set as "Line visible" in 3.0, but didn't in 2.x
And indeed on export to PDF the line does show.
It does not anymore once that "Line visible" gets unticked, (but apparently still shows on musescore.com, see #279510: Invisible pedal marks visible on musescore.com


Comments

Code:

       pedal = new Pedal(gscore);
      pedal->setLen(w);
      pedal->setBeginText("<sym>keyboardPedalPed</sym>");
      pedal->setContinueText("(<sym>keyboardPedalPed</sym>)");
      pedal->setEndText("<sym>keyboardPedalUp</sym>");
      pedal->setLineVisible(false);
      sp->append(pedal, QT_TRANSLATE_NOOP("Palette", "Pedal"));

So that looks like it should, wonder why it doesn't work?

Ah! It is correctly setup (and working) in the master palette, but apparently not in the advanced workspace. Should be a pretty easy fix then, just changing
advanced.xml from

        <Cell name="Pedal">
          <Pedal id="19">
            <beginText>&lt;sym&gt;keyboardPedalPed&lt;/sym&gt;</beginText>
            <endText>&lt;sym&gt;keyboardPedalUp&lt;/sym&gt;</endText>
            <track>0</track>
            </Pedal>
          </Cell>
 

to

        <Cell name="Pedal">
          <Pedal id="19">
            <beginText>&lt;sym&gt;keyboardPedalPed&lt;/sym&gt;</beginText>
            <endText>&lt;sym&gt;keyboardPedalUp&lt;/sym&gt;</endText>
            <lineVisible>0</lineVisible>
            <track>0</track>
            </Pedal>
          </Cell>
 

(and I wonder what that <track>0</track> is about? Also where is the continueText? )

Title "Ped. *" has the line set to visible in 3.0, was invisible in 2.x "Ped. *" has the line set to visible in 3.0 in advanced workspace , was invisible in 2.x
Status PR created fixed

Fixed in branch master, commit 1253c6342d

_fix #283405: "Ped. *" has line visible in advanced workspace

but not in master palette. Also for both "Ped." lines continueText is
set in master palette but missing in the palette._

Fix version
3.0.3