Ignore:
Timestamp:
Mar 26, 2019, 1:16:27 PM (6 years ago)
Author:
chronos
Message:
  • Modified: UnitKind list and items converted to general item list.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormItem.pas

    r290 r291  
    7979    InitControls;
    8080    LoadData(Item);
    81     Caption := Item.GetClassSysName;
     81    Caption := Item.GetClassName;
    8282  end else begin
    8383    DataControls.Clear;
     
    157157      NewControl := TCheckBox.Create(nil);
    158158    end else raise Exception.Create('Unsupported type ' + IntToStr(Integer(DataType)));
    159     NewControl.Left := 100;
     159    NewControl.Left := 150;
    160160    NewControl.Top := Y;
    161161    NewControl.Parent := Self;
    162162    Core.CoolTranslator1.TranslateComponent(NewControl);
     163    Core.ThemeManager1.ApplyTheme(NewControl);
    163164    NewControl.Visible := True;
    164165    DataControls.Add(NewControl);
Note: See TracChangeset for help on using the changeset viewer.