1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-15 18:58:55 +01:00

Make the pretty OSD the default on platforms without a native notification (Windows).

This commit is contained in:
David Sansome 2010-03-25 21:29:17 +00:00
parent 9c3ea3599f
commit 82cdab9047

View File

@ -49,7 +49,7 @@ void OSD::ReloadSettings() {
show_art_ = s.value("ShowArt", true).toBool(); show_art_ = s.value("ShowArt", true).toBool();
if (!SupportsNativeNotifications() && behaviour_ == Native) if (!SupportsNativeNotifications() && behaviour_ == Native)
behaviour_ = TrayPopup; behaviour_ = Pretty;
if (!SupportsTrayPopups() && behaviour_ == TrayPopup) if (!SupportsTrayPopups() && behaviour_ == TrayPopup)
behaviour_ = Disabled; behaviour_ = Disabled;