mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
UPD: Allow different character case for Type entry in icon theme.
This commit is contained in:
parent
160cfa2203
commit
0a20849fa0
1 changed files with 3 additions and 3 deletions
|
|
@ -373,11 +373,11 @@ begin
|
|||
IconMinSize:= IniFile.ReadInteger(sIconDirName, 'MinSize', IconSize);
|
||||
IconThreshold:= IniFile.ReadInteger(sIconDirName, 'Threshold', 2);
|
||||
|
||||
if IconTypeStr = 'Fixed' then
|
||||
if SameText(IconTypeStr, 'Fixed') then
|
||||
IconType:= itFixed
|
||||
else if IconTypeStr = 'Scalable' then
|
||||
else if SameText(IconTypeStr, 'Scalable') then
|
||||
IconType:= itScalable
|
||||
else if IconTypeStr = 'Threshold' then
|
||||
else if SameText(IconTypeStr, 'Threshold') then
|
||||
IconType:= itThreshold
|
||||
else
|
||||
begin
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue