Changeset 107
- Timestamp:
- Oct 11, 2016, 4:44:43 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.lfm
r105 r107 5 5 Width = 782 6 6 Caption = 'Acronym Decoder' 7 ClientHeight = 4 227 ClientHeight = 417 8 8 ClientWidth = 782 9 9 Menu = MainMenu1 … … 17 17 object Panel1: TPanel 18 18 Left = 0 19 Height = 39 619 Height = 391 20 20 Top = 26 21 21 Width = 782 22 22 Align = alClient 23 23 BevelOuter = bvNone 24 ClientHeight = 39 624 ClientHeight = 391 25 25 ClientWidth = 782 26 26 TabOrder = 1 27 27 object CheckBoxExactMath: TCheckBox 28 28 Left = 8 29 Height = 2 429 Height = 29 30 30 Top = 3 31 Width = 1 0431 Width = 124 32 32 Caption = 'Exact match' 33 33 OnChange = CheckBoxExactMathChange … … 44 44 object ListViewAcronyms: TListView 45 45 Left = 8 46 Height = 3 2446 Height = 319 47 47 Top = 64 48 48 Width = 767 -
trunk/Forms/UFormMain.pas
r104 r107 430 430 ListViewFilter1.StringGrid.SetFocus; 431 431 end; 432 Core.ScaleDPI1.ScaleImageList(ImageList1, Core.ScaleDPI1.DesignDPI);433 Core.ScaleDPI1.ScaleControl(ToolBar1, Core.ScaleDPI1.DesignDPI);434 432 end; 435 433 -
trunk/Languages/AcronymDecoder.cs.po
r105 r107 898 898 msgid "Process import sources" 899 899 msgstr "Zpracovat zdroje importu" 900 -
trunk/UCore.pas
r104 r107 165 165 166 166 procedure TCore.ScaleDPI; 167 var168 I: Integer;169 167 begin 170 //ScaleDPI1.DPI := Point(150, 150); 171 with ScaleDPI1 do 172 if (DesignDPI.X <> DPI.X) or (DesignDPI.Y <> DPI.Y) then begin 173 for I := 0 to Screen.FormCount - 1 do begin 174 //StoreDimensions(Screen.Forms[I], StoredDimension); 175 //ScaleDimensions(Screen.Forms[I], StoredDimension); 176 end; 177 end; 168 Core.ScaleDPI1.ScaleImageList(FormMain.ImageList1, Core.ScaleDPI1.DesignDPI); 169 Core.ScaleDPI1.ScaleControl(FormMain.ToolBar1, Core.ScaleDPI1.DesignDPI); 178 170 end; 179 171
Note:
See TracChangeset
for help on using the changeset viewer.