You've already forked lazarus-ccr
TvPlanIt: Workaround for opaque labels issue in Laz 2.2.4.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8692 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -37,9 +37,12 @@ uses
|
||||
Windows, Messages,
|
||||
{$ENDIF}
|
||||
SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls,
|
||||
VpBaseDS, VpResEditDlg;
|
||||
VpMisc, VpBaseDS, VpResEditDlg;
|
||||
|
||||
type
|
||||
|
||||
{ TfrmSelectResource }
|
||||
|
||||
TfrmSelectResource = class(TForm)
|
||||
VpResourceCombo1: TVpResourceCombo;
|
||||
lblSelectResource: TLabel;
|
||||
@ -51,6 +54,7 @@ type
|
||||
Bevel1: TBevel;
|
||||
procedure btnAddNewClick(Sender: TObject);
|
||||
procedure btnEditClick(Sender: TObject);
|
||||
procedure FormCreate(Sender: TObject);
|
||||
private
|
||||
{ Private declarations }
|
||||
public
|
||||
@ -78,5 +82,10 @@ begin
|
||||
VpResourceEditDialog1.Execute;
|
||||
end;
|
||||
|
||||
procedure TfrmSelectResource.FormCreate(Sender: TObject);
|
||||
begin
|
||||
FixLabels(Self);
|
||||
end;
|
||||
|
||||
end.
|
||||
|
||||
|
Reference in New Issue
Block a user