Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions Demos/Customizer/Unit1.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@ object Form1: TForm1
Top = 77
Height = 343
Cursor = crSizeWE
ParentColor = False
end
object SpTBXSplitter2: TSpTBXSplitter
Left = 614
Top = 77
Height = 343
Cursor = crSizeWE
Align = alRight
ParentColor = False
end
object SpTBXTabControl1: TSpTBXTabControl
Left = 147
Expand Down Expand Up @@ -495,11 +497,11 @@ object Form1: TForm1
Height = 343
object dpLog: TSpTBXDockablePanel
Left = 0
Top = 156
Top = 0
Width = 142
Height = 187
Caption = 'Commands Log'
DockPos = 156
DockPos = 0
TabOrder = 0
object Memo1: TMemo
Left = 0
Expand All @@ -515,11 +517,11 @@ object Form1: TForm1
end
object dpOptions: TSpTBXDockablePanel
Left = 0
Top = 0
Top = 187
Width = 142
Height = 156
Caption = 'Customizer Options'
DockPos = 0
DockPos = 187
TabOrder = 1
end
end
Expand Down Expand Up @@ -604,7 +606,7 @@ object Form1: TForm1
Left = 192
Top = 352
Bitmap = {
494C01011A001D00080010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
494C01011A001D00040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
0000000000003600000028000000400000007000000001002000000000000070
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
Expand Down
2 changes: 1 addition & 1 deletion Demos/Customizer/Unit1.pas
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ procedure TForm1.FormCreate(Sender: TObject);
FillLayoutList('LastLayout');

// Enable high DPI on the image list
SpDPIScaleImageList(ImageList1);
// Use TVirtualImageList! SpDPIScaleImageList(ImageList1);
end;

end.
2 changes: 1 addition & 1 deletion Demos/Customizer/gnugettext.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2219,7 +2219,7 @@ function TGnuGettextInstance.LoadResString(
const
ResStringTableLen = 16;
type
ResStringTable = array [0..ResStringTableLen-1] of LongWord;
ResStringTable = array [0..ResStringTableLen-1] of FixedUInt;
var
Handle: TResourceHandle;
Tab: ^ResStringTable;
Expand Down
Loading