From 82cdab9047bc59acadcbd354abefb47af83ff6cc Mon Sep 17 00:00:00 2001 From: David Sansome Date: Thu, 25 Mar 2010 21:29:17 +0000 Subject: [PATCH] Make the pretty OSD the default on platforms without a native notification (Windows). --- src/osd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osd.cpp b/src/osd.cpp index e7da55f25..9f6cdf596 100644 --- a/src/osd.cpp +++ b/src/osd.cpp @@ -49,7 +49,7 @@ void OSD::ReloadSettings() { show_art_ = s.value("ShowArt", true).toBool(); if (!SupportsNativeNotifications() && behaviour_ == Native) - behaviour_ = TrayPopup; + behaviour_ = Pretty; if (!SupportsTrayPopups() && behaviour_ == TrayPopup) behaviour_ = Disabled;