mirror of https://gitlab.com/basile.b/dexed.git
fix #88 - Content of floating widgets vanish the second time they are opened
This commit is contained in:
parent
31080c18f7
commit
2b674c238d
|
@ -9,7 +9,7 @@ object DexedWidget: TDexedWidget
|
||||||
ClientWidth = 332
|
ClientWidth = 332
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
ShowInTaskBar = stNever
|
ShowInTaskBar = stNever
|
||||||
LCLVersion = '2.0.10.0'
|
LCLVersion = '2.2.0.1'
|
||||||
object Back: TPanel
|
object Back: TPanel
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 121
|
Height = 121
|
||||||
|
|
|
@ -6,7 +6,7 @@ interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, FileUtil, Forms, Controls, ExtCtrls, ActnList, Menus,
|
Classes, SysUtils, FileUtil, Forms, Controls, ExtCtrls, ActnList, Menus,
|
||||||
AnchorDocking, u_interfaces, u_dsgncontrols, u_common, u_dialogs;
|
AnchorDocking, LCLVersion, u_interfaces, u_dsgncontrols, u_common, u_dialogs;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
|
@ -210,6 +210,9 @@ begin
|
||||||
win := DockMaster.GetAnchorSite(self);
|
win := DockMaster.GetAnchorSite(self);
|
||||||
if win.isAssigned then
|
if win.isAssigned then
|
||||||
begin
|
begin
|
||||||
|
{$if lcl_fullversion >= 2020000}
|
||||||
|
Show;
|
||||||
|
{$endif}
|
||||||
win.Show;
|
win.Show;
|
||||||
win.BringToFront;
|
win.BringToFront;
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Reference in New Issue