1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Description: fix #292912: use native file dialogues by default also on Linux
Author: mirabilos <m@mirbsd.org>
Forwarded: https://github.com/musescore/MuseScore/pull/5461
Applied-Upstream: v3.4
--- a/mscore/preferences.cpp
+++ b/mscore/preferences.cpp
@@ -48,13 +48,6 @@ void Preferences::init(bool storeInMemor
bool checkExtensionsUpdateStartup = false;
#endif
-#if defined(Q_OS_MAC) || defined(Q_OS_WIN)
- // use system native file dialogs
- // Qt file dialog is very slow on Windows and Mac
- bool nativeDialogs = true;
-#else
- bool nativeDialogs = false; // don't use system native file dialogs
-#endif
bool defaultUsePortAudio = false;
bool defaultUsePulseAudio = false;
bool defaultUseJackAudio = false;
@@ -173,7 +166,7 @@ void Preferences::init(bool storeInMemor
{PREF_UI_APP_RASTER_HORIZONTAL, new IntPreference(2)},
{PREF_UI_APP_RASTER_VERTICAL, new IntPreference(2)},
{PREF_UI_APP_SHOWSTATUSBAR, new BoolPreference(true)},
- {PREF_UI_APP_USENATIVEDIALOGS, new BoolPreference(nativeDialogs)},
+ {PREF_UI_APP_USENATIVEDIALOGS, new BoolPreference(true)},
{PREF_UI_PIANO_HIGHLIGHTCOLOR, new ColorPreference(QColor("#1259d0"))},
{PREF_UI_SCORE_NOTE_DROPCOLOR, new ColorPreference(QColor("#1778db"))},
{PREF_UI_SCORE_DEFAULTCOLOR, new ColorPreference(QColor("#000000"))},
|