mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 06:16:05 +02:00
IDE: package graph: fixed icons for uninstall packages
git-svn-id: trunk@40613 -
This commit is contained in:
parent
ab50101823
commit
63cfb5f3e5
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user