changeset 36720:962e2f41a08e

Change the message box type. It is just an information, that some settings require the playback to be restarted, not a warning. Patch by Stephen Sheldon, sfsheldo gmail com.
author ib
date Sat, 08 Feb 2014 21:43:04 +0000
parents 9ba7cfbe20c9
children e9044aed2250
files gui/win32/preferences.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gui/win32/preferences.c	Sat Feb 08 21:41:48 2014 +0000
+++ b/gui/win32/preferences.c	Sat Feb 08 21:43:04 2014 +0000
@@ -634,8 +634,8 @@
                     else if(SendDlgItemMessage(hwnd, ID_OSD3, BM_GETCHECK, 0, 0) == BST_CHECKED)
                         osd_level = 3;
 
-                    caption = strdup(acp(MSGTR_GUI_Warning));
-                    MessageBox(hwnd, acp(MSGTR_GUI_MSG_PlaybackNeedsRestart), caption, MB_OK);
+                    caption = strdup(acp(MSGTR_GUI_Information));
+                    MessageBox(hwnd, acp(MSGTR_GUI_MSG_PlaybackNeedsRestart), caption, MB_OK | MB_ICONINFORMATION);
                     free(caption);
                     DestroyWindow(hwnd);
                     break;