diff options
Diffstat (limited to 'tools/iceit')
-rw-r--r-- | tools/iceit/Unit1.pas | 6 | ||||
-rw-r--r-- | tools/iceit/bin/iceit.exe | bin | 193536 -> 193536 bytes |
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/iceit/Unit1.pas b/tools/iceit/Unit1.pas index 919bde982e..6b5bfaa97c 100644 --- a/tools/iceit/Unit1.pas +++ b/tools/iceit/Unit1.pas @@ -85,7 +85,7 @@ type var
Form1: TForm1;
- IconsItem, PluginsItem, CoreItem: Integer;
+ IconsItem, PluginsItem, CoreItem, LibsItem: Integer;
IcePath: String;
MirandaPath: String;
@@ -433,7 +433,8 @@ begin S := GetValue(CheckListBox1.Items[n], 0);
S := LowerCase(S);
// keep the order as for FillCombo function (atm Core<Plugins<Icons)
- if n < PluginsItem then F := '\core'
+ if n < LibsItem then F := '\ '
+ else if n < PluginsItem then F := '\libs'
else if n < IconsItem then F := '\icons'
else F := '\plugins';
@@ -569,6 +570,7 @@ begin IcePath := ExtractFilePath(ParamStr(0));
CoreItem := FillCombo('core');
+ LibsItem := FillCombo('libs');
PluginsItem := FillCombo('icons');
IconsItem := FillCombo('plugins');
end;
diff --git a/tools/iceit/bin/iceit.exe b/tools/iceit/bin/iceit.exe Binary files differindex 074ad308a7..95e9fbe0d7 100644 --- a/tools/iceit/bin/iceit.exe +++ b/tools/iceit/bin/iceit.exe |