Changeset 131 for trunk


Ignore:
Timestamp:
Jan 22, 2022, 5:38:13 PM (2 years ago)
Author:
chronos
Message:
  • Fixed: Scale toolbar and menu icons.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormMain.lfm

    r122 r131  
    3636  object ToolBarMain: TToolBar
    3737    Left = 0
    38     Height = 31
     38    Height = 33
    3939    Top = 0
    4040    Width = 1032
     
    133133  object PageControlRight: TPageControl
    134134    Left = 560
    135     Height = 611
    136     Top = 31
     135    Height = 609
     136    Top = 33
    137137    Width = 472
    138138    ActivePage = TabSheetDebug
     
    144144    object TabSheetDebug: TTabSheet
    145145      Caption = 'Debug'
    146       ClientHeight = 607
     146      ClientHeight = 605
    147147      ClientWidth = 390
    148148      ParentFont = False
     
    206206      object PanelMemory: TPanel
    207207        Left = 0
    208         Height = 98
     208        Height = 96
    209209        Top = 509
    210210        Width = 390
     
    218218  object Splitter1: TSplitter
    219219    Left = 554
    220     Height = 611
    221     Top = 31
     220    Height = 609
     221    Top = 33
    222222    Width = 6
    223223    Align = alRight
     
    226226  object PanelLeft: TPanel
    227227    Left = 0
    228     Height = 611
    229     Top = 31
     228    Height = 609
     229    Top = 33
    230230    Width = 554
    231231    Align = alClient
    232232    BevelOuter = bvNone
    233     ClientHeight = 611
     233    ClientHeight = 609
    234234    ClientWidth = 554
    235235    ParentFont = False
     
    237237    object PageControlMain: TPageControl
    238238      Left = 0
    239       Height = 463
     239      Height = 461
    240240      Top = 0
    241241      Width = 554
     
    257257      Left = 0
    258258      Height = 142
    259       Top = 469
     259      Top = 467
    260260      Width = 554
    261261      ActivePage = TabSheetMessages
     
    274274      Left = 0
    275275      Height = 6
    276       Top = 463
     276      Top = 461
    277277      Width = 554
    278278      Align = alBottom
  • trunk/Forms/UFormMessages.pas

    r72 r131  
    4747procedure TFormMessages.FormCreate(Sender: TObject);
    4848begin
    49 
    5049end;
    5150
  • trunk/Forms/UFormSourceCode.pas

    r128 r131  
    178178begin
    179179  SynEditSource.Highlighter := nil;
    180   BFHighlighter.Free;
     180  FreeAndNil(BFHighlighter);
    181181end;
    182182
    183183procedure TFormSourceCode.UpdateInterface;
    184184begin
    185 
    186185end;
    187186
  • trunk/UCore.pas

    r128 r131  
    194194        ScaleDimensions(Screen.Forms[I], StoredDimension);
    195195      end;
    196       // TODO: Transparent image scaling not working properly under linux Gtk2
    197       // Also screen DPI is not correctly detected under linux Gtk2
    198       {$IFDEF WINDOWS}
    199196      ScaleImageList(ImageListMain, DesignDPI);
    200       {$ENDIF}
    201197    end;
    202198  end;
Note: See TracChangeset for help on using the changeset viewer.