From 47a197ac3a030a51286ccb2f859b21b9cd4f518c Mon Sep 17 00:00:00 2001 From: Philippe Houdoin Date: Mon, 9 Jun 2008 22:52:53 +0000 Subject: [PATCH] Run Alert/AboutBox in asynchronous mode: otherwise it freeze video (can't tell if it was the same for audio, as mine -hda- is not supported yet). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25894 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/mediaplayer/MainWin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/mediaplayer/MainWin.cpp b/src/apps/mediaplayer/MainWin.cpp index 7d83db588b..7126243719 100644 --- a/src/apps/mediaplayer/MainWin.cpp +++ b/src/apps/mediaplayer/MainWin.cpp @@ -479,10 +479,10 @@ MainWin::MessageReceived(BMessage *msg) ", Stephan Aßmus and Frederik Modéen", "Thanks"); if (fAlwaysOnTop) { _ToggleAlwaysOnTop(); - alert->Go(); + alert->Go(NULL); // Asynchronous mode _ToggleAlwaysOnTop(); } else { - alert->Go(); + alert->Go(NULL); // Asynchronous mode } break; case M_FILE_CLOSE: