79e17252f7
* added icons to the file dialog buttons * fixed icecast streams titles * fixed build * fixed default output under windows * fixed api documentation * fixed possible segmentation fault in the cue plugin * fixed cue parsing * fixed automatic charset detection * fixed Ukrainian translation (Gennadi Motsyo) * fixed Russian translation OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/qmmp?expand=0&rev=14
14 lines
593 B
Diff
14 lines
593 B
Diff
Index: src/qmmp/output.cpp
|
|
===================================================================
|
|
--- src/qmmp/output.cpp.orig
|
|
+++ src/qmmp/output.cpp
|
|
@@ -477,7 +477,7 @@ OutputFactory *Output::currentFactory()
|
|
checkFactories();
|
|
QSettings settings (Qmmp::configFile(), QSettings::IniFormat);
|
|
#ifdef Q_OS_LINUX
|
|
- QString name = settings.value("Output/current_plugin", "alsa").toString();
|
|
+ QString name = settings.value("Output/current_plugin", "pulse").toString();
|
|
#elif defined Q_WS_WIN
|
|
QString name = settings.value("Output/current_plugin", "waveout").toString();
|
|
#else
|