mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Use Vista's Segeo font for all forms by using the SetVistaFonts() in mainform plus the new routine InheritFont() which simply overtakes fontname and size from the mainform to all other forms.
This commit is contained in:
@ -20,6 +20,7 @@ type
|
||||
procedure FormClose(Sender: TObject; var Action: TCloseAction);
|
||||
procedure FormDeactivate(Sender: TObject);
|
||||
procedure FormShow(Sender: TObject);
|
||||
procedure FormCreate(Sender: TObject);
|
||||
private
|
||||
{ Private declarations }
|
||||
ColumnNames : TWideStringList;
|
||||
@ -47,6 +48,12 @@ uses main, helpers;
|
||||
{$R *.dfm}
|
||||
|
||||
|
||||
procedure TDataSortingForm.FormCreate(Sender: TObject);
|
||||
begin
|
||||
InheritFont(Font);
|
||||
end;
|
||||
|
||||
|
||||
{**
|
||||
Initialization
|
||||
}
|
||||
|
Reference in New Issue
Block a user