mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 11:17:57 +08:00
Bugfix: fix issue #1055.
This commit is contained in:
@ -43,6 +43,7 @@ type
|
|||||||
btnDelete: TToolButton;
|
btnDelete: TToolButton;
|
||||||
btnSaveAs: TToolButton;
|
btnSaveAs: TToolButton;
|
||||||
btnEditDesc: TButton;
|
btnEditDesc: TButton;
|
||||||
|
procedure CreateParams(var Params: TCreateParams); override;
|
||||||
procedure FormCreate(Sender: TObject);
|
procedure FormCreate(Sender: TObject);
|
||||||
procedure btnSaveAndConnectClick(Sender: TObject);
|
procedure btnSaveAndConnectClick(Sender: TObject);
|
||||||
procedure FormClose(Sender: TObject; var Action: TCloseAction);
|
procedure FormClose(Sender: TObject; var Action: TCloseAction);
|
||||||
@ -71,6 +72,14 @@ implementation
|
|||||||
{$R *.DFM}
|
{$R *.DFM}
|
||||||
|
|
||||||
|
|
||||||
|
procedure Tconnform.CreateParams(var Params: TCreateParams);
|
||||||
|
begin
|
||||||
|
inherited;
|
||||||
|
Params.ExStyle := Params.ExStyle OR WS_EX_APPWINDOW;
|
||||||
|
Params.WndParent := GetDesktopWindow;
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
{**
|
{**
|
||||||
FormCreate
|
FormCreate
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user