Merge pull request #4555 from FernetMenta/musicosd
authorjmarshallnz <jcmarsha@gmail.com>
Sat, 12 Apr 2014 21:28:16 +0000 (09:28 +1200)
committerTrent Nelson <trent.a.b.nelson@gmail.com>
Tue, 15 Apr 2014 18:16:34 +0000 (12:16 -0600)
fix flickering music OSD

xbmc/music/dialogs/GUIDialogMusicOSD.cpp

index 79e9100..31b3bc8 100644 (file)
@@ -90,7 +90,8 @@ void CGUIDialogMusicOSD::FrameMove()
     // check for movement of mouse or a submenu open
     if (g_Mouse.IsActive() || g_windowManager.IsWindowActive(WINDOW_DIALOG_VIS_SETTINGS)
                            || g_windowManager.IsWindowActive(WINDOW_DIALOG_VIS_PRESET_LIST))
-      SetAutoClose(100); // enough for 10fps
+      // extend show time by original value
+      SetAutoClose(m_showDuration);
   }
   CGUIDialog::FrameMove();
 }