From d5e2e814a417ed7606dcfd6c480c4db844f8acf9 Mon Sep 17 00:00:00 2001 From: stippi Date: Tue, 20 Apr 2010 15:46:23 +0000 Subject: [PATCH] No need to block the BApplication thread when showing the About window. git-svn-id: http://svn.haiku-os.org/webpositive/webkit/trunk@442 94f232f2-1747-11df-bad5-a5bfde151594 --- src/apps/webpositive/BrowserApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/webpositive/BrowserApp.cpp b/src/apps/webpositive/BrowserApp.cpp index a69cc84bea..86bdfb1a75 100644 --- a/src/apps/webpositive/BrowserApp.cpp +++ b/src/apps/webpositive/BrowserApp.cpp @@ -93,7 +93,7 @@ BrowserApp::AboutRequested() BAlert* alert = new BAlert("About WebPositive", aboutText.String(), "Sweet!"); - alert->Go(); + alert->Go(NULL); }