We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b141d45 commit 7dc947cCopy full SHA for 7dc947c
source/FrameStand.pas
@@ -1,5 +1,5 @@
1
(*
2
- Copyright 2015, TFrameStand
+ Copyright 2016, TFrameStand
3
4
Author:
5
Andrea Magni <andrea(dot)magni(at)gmail(dot)com>
@@ -427,6 +427,12 @@ constructor TFrameInfo<T>.Create(const AFrameStand: TFrameStand;
427
FStand.Align := TAlignLayout.Contents;
428
FStand.StyleName := 'container';
429
end;
430
+{$if compilerversion >= 31}
431
+ // 10.1 Berlin and later
432
+ // See https://github.com/andrea-magni/TFrameStand/issues/12
433
+ // also see https://quality.embarcadero.com/browse/RSP-14806
434
+ FStand.Align := TAlignLayout.Contents;
435
+{$ifend}
436
FStand.Visible := False;
437
438
// PARENT
0 commit comments