diff options
author | Florian Jung <flo@windfisch.org> | 2011-09-17 13:02:29 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-09-17 13:02:29 +0000 |
commit | 20be330d41e99293e39df45fc50a613ae220c4f2 (patch) | |
tree | d7620bfb4244c74e490d675dc6081fbfafa24f5e /muse2/muse | |
parent | 37b385ad3b203c90a47cd43d6d2960b201c0e3ff (diff) |
forgot to save a file :(
Diffstat (limited to 'muse2/muse')
-rw-r--r-- | muse2/muse/conf.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/muse2/muse/conf.cpp b/muse2/muse/conf.cpp index 7cf8e680..2e7fa84e 100644 --- a/muse2/muse/conf.cpp +++ b/muse2/muse/conf.cpp @@ -818,7 +818,7 @@ void readConfiguration(Xml& xml, bool readOnlySequencer, bool doReadGlobalConfig else if (tag == "synthTrackBg") MusEConfig::config.synthTrackBg = readColor(xml); - else if (tag == "extendedMidi") //FINDMICHJETZT begin + else if (tag == "extendedMidi") MusEConfig::config.extendedMidi = xml.parseInt(); else if (tag == "midiExportDivision") MusEConfig::config.midiDivision = xml.parseInt(); @@ -869,7 +869,7 @@ void readConfiguration(Xml& xml, bool readOnlySequencer, bool doReadGlobalConfig MusEConfig::config.waveEditBackgroundColor = readColor(xml); //else if (tag == "midiSyncInfo") // readConfigMidiSyncInfo(xml); - /* Obsolete. FINDMICH flo93 + /* Obsolete. done by song's toplevel list. arrangerview also handles arranger. else if (tag == "arranger") { if (MusEGlobal::muse && MusEGlobal::muse->arranger()) MusEGlobal::muse->arranger()->readStatus(xml); @@ -949,7 +949,7 @@ void readConfiguration(Xml& xml, bool readOnlySequencer, bool doReadGlobalConfig else if ((tag == "arranger") || (tag == "geometryPianoroll") || (tag == "geometryDrumedit")) xml.skip(tag); else if (tag == "markerVisible") - //MusEConfig::config.markerVisible = xml.parseInt(); //Obsolete FINDMICH flo93 + //MusEConfig::config.markerVisible = xml.parseInt(); //Obsolete (done by song's toplevel list) xml.skip(tag); else if (tag == "mixerVisible") // MusEConfig::config.mixerVisible = xml.parseInt(); // Obsolete @@ -1476,10 +1476,11 @@ void MusE::writeConfiguration(int level, Xml& xml) const xml.intTag(level, "bigtimeVisible", viewBigtimeAction->isChecked()); xml.intTag(level, "transportVisible", viewTransportAction->isChecked()); - //xml.intTag(level, "markerVisible", viewMarkerAction->isChecked()); // Obsolete. FINDMICH flo93 + //xml.intTag(level, "markerVisible", viewMarkerAction->isChecked()); // Obsolete (done by song's toplevel list) //xml.intTag(level, "mixerVisible", menuView->isItemChecked(aid1)); // Obsolete - // xml.geometryTag(level, "geometryMain", this); // Obsolete. FINDMICH flo93 + xml.geometryTag(level, "geometryMain", this); // FINDME: maybe remove this? do we want + // the main win to jump around when loading? if (transport) xml.geometryTag(level, "geometryTransport", transport); if (bigtime) @@ -1496,7 +1497,7 @@ void MusE::writeConfiguration(int level, Xml& xml) const //mixer2->write(level, xml, "mixer2"); mixer2->write(level, xml); - //_arranger->writeStatus(level, xml); // Obsolete. FINDMICH flo93 + //_arranger->writeStatus(level, xml); // Obsolete. done by song's toplevel list. arrangerview also handles arranger. writeSeqConfiguration(level, xml, true); write_function_dialog_config(level, xml); |