Browse Source

amunits: added missing WA_Borderless handling to the OpenWindow taglist handling legacy support code

Karoly Balogh 3 years ago
parent
commit
c01c13c29a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/amunits/src/coreunits/intuition.pas

+ 1 - 0
packages/amunits/src/coreunits/intuition.pas

@@ -4414,6 +4414,7 @@ begin
       WA_SizeGadget: NewWindow^.Flags := NewWindow^.Flags or WFLG_SIZEGADGET;
       WA_SmartRefresh: NewWindow^.Flags := NewWindow^.Flags or WFLG_SMART_REFRESH;
       WA_Activate: NewWindow^.Flags := NewWindow^.Flags or WFLG_ACTIVATE;
+      WA_Borderless: NewWindow^.Flags := NewWindow^.Flags or WFLG_BORDERLESS;
       WA_SuperBitMap: NewWindow^.BitMap := Pointer(TagList^.ti_Data);
       WA_Title: NewWindow^.Title := PChar(TagList^.ti_Data);
       WA_Top: NewWindow^.TopEdge := TagList^.ti_Data;