FIX: TStashFileSource.GetMainIcon() in Stash on Windows

This commit is contained in:
rich2014 2026-06-12 08:29:35 +08:00
commit 3e869b4d9a

View file

@ -235,7 +235,8 @@ end;
class function TStashFileSource.GetMainIcon(out Path: String): Boolean;
begin
Path:= mbExpandFileName( '$COMMANDER_PATH/pixmaps/stuff/stash.png' );
Path:= EnvVarCommanderPath + PathDelim + 'pixmaps' + PathDelim + 'stuff' + PathDelim + 'stash.png';
Path:= mbExpandFileName( Path );
Result:= True;
end;