Changeset 175
- Timestamp:
- Feb 26, 2018, 10:08:13 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.lfm
r173 r175 27 27 TabOrder = 0 28 28 object ListViewFilter1: TListViewFilter 29 Left = 1029 Left = 4 30 30 Height = 38 31 Top = 632 Width = 8 2831 Top = 4 32 Width = 838 33 33 OnChange = ListViewFilter1Change 34 34 Anchors = [akTop, akLeft, akRight] 35 35 end 36 36 object ListViewAcronyms: TListView 37 Left = 1038 Height = 4 2739 Top = 4 440 Width = 8 2937 Left = 4 38 Height = 432 39 Top = 42 40 Width = 838 41 41 Anchors = [akTop, akLeft, akRight, akBottom] 42 42 Columns = < -
trunk/Languages/AcronymDecoder.cs.po
r174 r175 922 922 msgid "Process import sources" 923 923 msgstr "Zpracovat zdroje importu" 924 -
trunk/Packages/Common/UListViewSort.pas
r174 r175 144 144 begin 145 145 with FStringGrid1 do begin 146 Options := Options - [goEditing, goAlwaysShowEditor]; 146 147 //Columns.Clear; 147 148 while Columns.Count > ListView.Columns.Count do Columns.Delete(Columns.Count - 1); … … 150 151 Columns[I].Width := ListView.Columns[I].Width; 151 152 end; 153 Options := Options + [goEditing, goAlwaysShowEditor]; 152 154 end; 153 155 end; -
trunk/Packages/Common/UTheme.pas
r174 r175 138 138 Control := (Component as TControl); 139 139 if (Control is TEdit) or (Control is TSpinEdit) or (Control is TComboBox) and 140 (Control is TMemo) or (Control is TListView) or (Control is T StringGrid) or140 (Control is TMemo) or (Control is TListView) or (Control is TCustomDrawGrid) or 141 141 (Control is TCheckBox) then begin 142 142 Control.Color := FTheme.ColorWindow; … … 145 145 Control.Color := FTheme.ColorControl; 146 146 Control.Font.Color := FTheme.ColorControlText; 147 end; 148 149 if Control is TCustomDrawGrid then begin 150 (Control as TCustomDrawGrid).Editor.Color := FTheme.ColorWindow; 151 (Control as TCustomDrawGrid).Editor.Font.Color := FTheme.ColorWindowText; 147 152 end; 148 153 end; -
trunk/UCore.lfm
r169 r175 3444 3444 AppName = 'Acronym Decoder' 3445 3445 Description = 'Simple tool for quick searching of meaning for various acronyms and abbreviations.' 3446 ReleaseDate = 43 0463446 ReleaseDate = 43157 3447 3447 RegistryKey = '\Software\' 3448 3448 RegistryRoot = rrKeyCurrentUser
Note:
See TracChangeset
for help on using the changeset viewer.