From b25b8e2a2a4198451cc8feaca850f9ced82a5ea8 Mon Sep 17 00:00:00 2001 From: mattias Date: Thu, 7 Oct 2010 11:45:23 +0000 Subject: [PATCH] IDE: progress window: show hint git-svn-id: trunk@27604 - --- ide/compileroptions.pp | 2 +- ide/progresswnd.pas | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ide/compileroptions.pp b/ide/compileroptions.pp index b29bc993b0..75547faf31 100644 --- a/ide/compileroptions.pp +++ b/ide/compileroptions.pp @@ -115,7 +115,7 @@ - the default build mode should be stored in the old xml path, so that old IDEs can open newer projects. - store sets in lps - - store active build mdoe in session + - store active build mode in session - make lazbuild lcl independent, independent of packages except one - license gpl2 - create package lazbuildsystem with some units diff --git a/ide/progresswnd.pas b/ide/progresswnd.pas index de9b161cbf..7ea6952873 100644 --- a/ide/progresswnd.pas +++ b/ide/progresswnd.pas @@ -331,11 +331,13 @@ begin Result.CaptionLabel.Align:=alTop; Result.CaptionLabel.AutoSize:=true; Result.CaptionLabel.Parent:=Result.Panel; + Result.CaptionLabel.ShowHint:=true; // add a progressbar below the label Result.ProgressBar:=TProgressBar.Create(Result.Panel); Result.ProgressBar.Align:=alTop; Result.ProgressBar.AutoSize:=true; Result.ProgressBar.Parent:=Result.Panel; + Result.ProgressBar.ShowHint:=true; Result.ProgressBar.Top:=10; // show panel