diff options
| author | Tim E. Real <termtech@rogers.com> | 2010-11-23 00:18:45 +0000 | 
|---|---|---|
| committer | Tim E. Real <termtech@rogers.com> | 2010-11-23 00:18:45 +0000 | 
| commit | 8f4b5462947d5b9a74e7fc439e28538172fd4967 (patch) | |
| tree | 51eae0246376696a154cf95b8e2577afdbe451f7 | |
| parent | 4dec95a58f5a3b0062e11da4331f8556428791a5 (diff) | |
Fix crash. In MusE::changeConfig(), load style sheet after style.
| -rw-r--r-- | muse2/muse/app.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/muse2/muse/app.cpp b/muse2/muse/app.cpp index f2c40020..758c05a6 100644 --- a/muse2/muse/app.cpp +++ b/muse2/muse/app.cpp @@ -4297,10 +4297,10 @@ void MusE::changeConfig(bool writeFlag)        if (writeFlag)              writeGlobalConfiguration(); -      loadStyleSheetFile(config.styleSheetFile); +      //loadStyleSheetFile(config.styleSheetFile);        loadTheme(config.style);        QApplication::setFont(config.fonts[0], true); -      //loadStyleSheetFile(config.styleSheetFile); +      loadStyleSheetFile(config.styleSheetFile);        emit configChanged();        updateConfiguration();  | 
