diff options
author | Florian Jung <flo@windfisch.org> | 2011-04-18 16:16:42 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-04-18 16:16:42 +0000 |
commit | 0f64da6e5a36729218f3d3f5ba5b127be7defbf2 (patch) | |
tree | 9044c6cbd7fd80c855f83097f30e5e11912734e0 /muse2/muse/app.cpp | |
parent | 8a42f6caea0c48276fa169aea4256b0361b3cb04 (diff) |
score editor now listens to most (if not all) interesting signals and redraws
changed pcanvas.cpp to emit a signal when changing a part's color
changed app.cpp to not connect scoreedit's configChanged slot
Diffstat (limited to 'muse2/muse/app.cpp')
-rw-r--r-- | muse2/muse/app.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/muse2/muse/app.cpp b/muse2/muse/app.cpp index 9f10a614..3357fac1 100644 --- a/muse2/muse/app.cpp +++ b/muse2/muse/app.cpp @@ -3525,7 +3525,9 @@ void MusE::openInScoreEdit(ScoreEdit* destination, PartList* pl, bool allInOne) destination->show(); toplevels.push_back(Toplevel(Toplevel::SCORE, (unsigned long)(destination), destination)); connect(destination, SIGNAL(deleted(unsigned long)), SLOT(toplevelDeleted(unsigned long))); - connect(muse, SIGNAL(configChanged()), destination, SLOT(configChanged())); + //connect(muse, SIGNAL(configChanged()), destination, SLOT(config_changed())); + //commented out by flo, because the ScoreEditor connects to all + //relevant signals on his own updateScoreMenus(); } |