IDE: package graph: fixed icons for uninstall packages

git-svn-id: trunk@40613 -
This commit is contained in:
mattias 2013-03-21 22:58:00 +00:00
parent ab50101823
commit 63cfb5f3e5
2 changed files with 3 additions and 3 deletions

View File

@ -4312,7 +4312,7 @@ resourcestring
lisPckExplAutoCreated = 'AutoCreated';
lisPckExplInstalled = 'Installed';
lisPckExplInstallOnNextStart = 'Install on next start';
lisPckExplUninstallOnNextStart = 'Uninstall on next start';
lisPckExplUninstallOnNextStart = 'Uninstall on next start (unless needed by an installed package)';
lisPckExplBase = 'Base, can not be uninstalled';
// project inspector

View File

@ -190,11 +190,11 @@ begin
if Pkg.AutoInstall<>pitNope then begin
Result:=ImgIndexInstalledPackage;
end else begin
Result:=ImgIndexInstallPackage;
Result:=ImgIndexUninstallPackage;
end;
end else begin
if Pkg.AutoInstall<>pitNope then begin
Result:=ImgIndexUninstallPackage;
Result:=ImgIndexInstallPackage;
end else begin
Result:=ImgIndexPackage;
end;