Skip to content

Commit

Permalink
Version 2.5.11
Browse files Browse the repository at this point in the history
- Added Rad Studio 12 Athens support.
- Added package files for Delphi Rio and up, vclwinx added to runtime package
  to add support for TVirtualImageList.
  Delphi Tokyo and older should use the packages located at \RAD Studio Tokyo And Older
  • Loading branch information
SilverpointDev committed Nov 28, 2023
1 parent 2309123 commit b647012
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ requires
vcl,
tb2k_d12,
rtl,
vclx,
vclwinx;
vclx;

contains
SpTBXItem in '..\..\Source\SpTBXItem.pas',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@
<DCCReference Include="tb2k_d12.dcp"/>
<DCCReference Include="rtl.dcp"/>
<DCCReference Include="vclx.dcp"/>
<DCCReference Include="vclwinx.dcp"/>
<DCCReference Include="..\..\Source\SpTBXItem.pas"/>
<DCCReference Include="..\..\Source\SpTBXControls.pas"/>
<DCCReference Include="..\..\Source\SpTBXTabs.pas"/>
Expand Down
File renamed without changes.
3 changes: 2 additions & 1 deletion Packages/RAD Studio/SpTBXLib.dpk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ requires
vcl,
tb2k_d12,
rtl,
vclx;
vclx,
vclwinx;

contains
SpTBXItem in '..\..\Source\SpTBXItem.pas',
Expand Down
1 change: 1 addition & 0 deletions Packages/RAD Studio/SpTBXLib.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
<DCCReference Include="tb2k_d12.dcp"/>
<DCCReference Include="rtl.dcp"/>
<DCCReference Include="vclx.dcp"/>
<DCCReference Include="vclwinx.dcp"/>
<DCCReference Include="..\..\Source\SpTBXItem.pas"/>
<DCCReference Include="..\..\Source\SpTBXControls.pas"/>
<DCCReference Include="..\..\Source\SpTBXTabs.pas"/>
Expand Down
6 changes: 6 additions & 0 deletions Release History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
28 November 2023 - version 2.5.11
- Added Rad Studio 12 Athens support.
- Added package files for Delphi Rio and up, vclwinx added to runtime package
to add support for TVirtualImageList.
Delphi Tokyo and older should use the packages located at \RAD Studio Tokyo And Older

18 September 2023 - version 2.5.10
- Updated TB2K patch, removed VirtualImageList scaling on
TB2Common.SpGetScaledVirtualImageListSize.
Expand Down
2 changes: 1 addition & 1 deletion Source/SpTBXSkins.pas
Original file line number Diff line number Diff line change
Expand Up @@ -3463,7 +3463,7 @@ procedure TSpTBXSkinOptions.PaintThemedElementBackground(AControl: TControl; ACa
begin
SaveIndex := SaveDC(ACanvas.Handle); // XE2 Styles changes the font
try
SpTBXStyleServices(AControl).DrawElement(ACanvas.Handle, Details, ARect, nil{$IF CompilerVersion >= 33}, DPI{$IFEND}); // DPI param introduced on 10.3 Rio DPI);
SpTBXStyleServices(AControl).DrawElement(ACanvas.Handle, Details, ARect, nil{$IF CompilerVersion >= 33}, DPI{$IFEND}); // DPI param introduced on 10.3 Rio DPI
finally
RestoreDC(ACanvas.Handle, SaveIndex);
end;
Expand Down

0 comments on commit b647012

Please sign in to comment.