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
|
||||
ShowHint = True
|
||||
ShowInTaskBar = stNever
|
||||
LCLVersion = '2.0.10.0'
|
||||
LCLVersion = '2.2.0.1'
|
||||
object Back: TPanel
|
||||
Left = 0
|
||||
Height = 121
|
||||
|
|
|
@ -6,7 +6,7 @@ interface
|
|||
|
||||
uses
|
||||
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
|
||||
|
||||
|
@ -210,6 +210,9 @@ begin
|
|||
win := DockMaster.GetAnchorSite(self);
|
||||
if win.isAssigned then
|
||||
begin
|
||||
{$if lcl_fullversion >= 2020000}
|
||||
Show;
|
||||
{$endif}
|
||||
win.Show;
|
||||
win.BringToFront;
|
||||
end;
|
||||
|
|
Loading…
Reference in New Issue