fix #19985 - mark score dirty

after chnages to Menu -> Display -> Show
{Invisible|Unprintable|Frames|Page Margins}
This commit is contained in:
Joachim Schmitz 2013-02-07 16:08:18 +01:00
parent f80dfa796c
commit 2ed9be9c29

View file

@ -697,6 +697,7 @@ void Score::setShowInvisible(bool v)
{
_showInvisible = v;
_updateAll = true;
_dirty = true;
end();
}
@ -708,6 +709,7 @@ void Score::setShowUnprintable(bool v)
{
_showUnprintable = v;
_updateAll = true;
_dirty = true;
end();
}
@ -719,6 +721,7 @@ void Score::setShowFrames(bool v)
{
_showFrames = v;
_updateAll = true;
_dirty = true;
end();
}
@ -730,6 +733,7 @@ void Score::setShowPageborders(bool v)
{
_showPageborders = v;
_updateAll = true;
_dirty = true;
end();
}