From 9de81c4ee6ecc06a471ff2d4344f98db3fada97e Mon Sep 17 00:00:00 2001 From: vincents Date: Thu, 3 May 2007 18:46:44 +0000 Subject: [PATCH] debugger: set ShowConsole to true if not compile as win32 graphic application, used by process debugger, fixes note 12473 of bug #8647. git-svn-id: trunk@11067 - --- ide/debugmanager.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/ide/debugmanager.pas b/ide/debugmanager.pas index 7c5a06d24d..c1da37261f 100644 --- a/ide/debugmanager.pas +++ b/ide/debugmanager.pas @@ -1725,6 +1725,7 @@ begin // set filename after workingdir FDebugger.FileName := LaunchingApplication; FDebugger.Arguments := LaunchingParams; + FDebugger.ShowConsole := not Project1.CompilerOptions.Win32GraphicApp; // check if debugging needs restart // mwe: can this still happen ?