# HG changeset patch # User ib # Date 1391895784 0 # Node ID 962e2f41a08e25f4e712c8f5c4d60a0ad46f69fc # Parent 9ba7cfbe20c94b1ab1b6448f9636257d48da6b1a 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. diff -r 9ba7cfbe20c9 -r 962e2f41a08e gui/win32/preferences.c --- 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;