Changeset 131
- Timestamp:
- Jan 22, 2022, 5:38:13 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.lfm
r122 r131 36 36 object ToolBarMain: TToolBar 37 37 Left = 0 38 Height = 3 138 Height = 33 39 39 Top = 0 40 40 Width = 1032 … … 133 133 object PageControlRight: TPageControl 134 134 Left = 560 135 Height = 6 11136 Top = 3 1135 Height = 609 136 Top = 33 137 137 Width = 472 138 138 ActivePage = TabSheetDebug … … 144 144 object TabSheetDebug: TTabSheet 145 145 Caption = 'Debug' 146 ClientHeight = 60 7146 ClientHeight = 605 147 147 ClientWidth = 390 148 148 ParentFont = False … … 206 206 object PanelMemory: TPanel 207 207 Left = 0 208 Height = 9 8208 Height = 96 209 209 Top = 509 210 210 Width = 390 … … 218 218 object Splitter1: TSplitter 219 219 Left = 554 220 Height = 6 11221 Top = 3 1220 Height = 609 221 Top = 33 222 222 Width = 6 223 223 Align = alRight … … 226 226 object PanelLeft: TPanel 227 227 Left = 0 228 Height = 6 11229 Top = 3 1228 Height = 609 229 Top = 33 230 230 Width = 554 231 231 Align = alClient 232 232 BevelOuter = bvNone 233 ClientHeight = 6 11233 ClientHeight = 609 234 234 ClientWidth = 554 235 235 ParentFont = False … … 237 237 object PageControlMain: TPageControl 238 238 Left = 0 239 Height = 46 3239 Height = 461 240 240 Top = 0 241 241 Width = 554 … … 257 257 Left = 0 258 258 Height = 142 259 Top = 46 9259 Top = 467 260 260 Width = 554 261 261 ActivePage = TabSheetMessages … … 274 274 Left = 0 275 275 Height = 6 276 Top = 46 3276 Top = 461 277 277 Width = 554 278 278 Align = alBottom -
trunk/Forms/UFormMessages.pas
r72 r131 47 47 procedure TFormMessages.FormCreate(Sender: TObject); 48 48 begin 49 50 49 end; 51 50 -
trunk/Forms/UFormSourceCode.pas
r128 r131 178 178 begin 179 179 SynEditSource.Highlighter := nil; 180 BFHighlighter.Free;180 FreeAndNil(BFHighlighter); 181 181 end; 182 182 183 183 procedure TFormSourceCode.UpdateInterface; 184 184 begin 185 186 185 end; 187 186 -
trunk/UCore.pas
r128 r131 194 194 ScaleDimensions(Screen.Forms[I], StoredDimension); 195 195 end; 196 // TODO: Transparent image scaling not working properly under linux Gtk2197 // Also screen DPI is not correctly detected under linux Gtk2198 {$IFDEF WINDOWS}199 196 ScaleImageList(ImageListMain, DesignDPI); 200 {$ENDIF}201 197 end; 202 198 end;
Note:
See TracChangeset
for help on using the changeset viewer.