mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
FIX: Bug [0001475] 22x22 should be 24x24 #3
This commit is contained in:
parent
5c35a4faae
commit
891ea6bc66
1 changed files with 3 additions and 3 deletions
|
|
@ -5509,7 +5509,7 @@ begin
|
|||
Drive := DrivesList[DriveIndex];
|
||||
DriveButton.Caption := Drive^.DisplayName;
|
||||
DriveButton.Tag := DriveIndex;
|
||||
BitmapTmp := PixMapManager.GetDriveIcon(Drive, 22, DriveButton.Color);
|
||||
BitmapTmp := PixMapManager.GetDriveIcon(Drive, 24, DriveButton.Color);
|
||||
end
|
||||
else
|
||||
begin
|
||||
|
|
@ -5517,9 +5517,9 @@ begin
|
|||
DriveButton.Tag := -1;
|
||||
|
||||
if FileView.FileSource.IsClass(TArchiveFileSource) then
|
||||
BitmapTmp := PixMapManager.GetArchiveIcon(22, DriveButton.Color)
|
||||
BitmapTmp := PixMapManager.GetArchiveIcon(24, DriveButton.Color)
|
||||
else
|
||||
BitmapTmp := PixMapManager.GetDefaultDriveIcon(22, DriveButton.Color);
|
||||
BitmapTmp := PixMapManager.GetDefaultDriveIcon(24, DriveButton.Color);
|
||||
end;
|
||||
|
||||
DriveButton.Glyph := BitmapTmp;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue