mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 21:48:19 +02:00
IDE: progress window: show hint
git-svn-id: trunk@27604 -
This commit is contained in:
parent
b643681b2b
commit
b25b8e2a2a
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user