In Windows, after pressing CTRL+T path to built file (replaced from @prg) gets trimmed if contains spaces.
i.e. if output file is C:\SomePath\Commodore 64\project\main.prg
then user defined tool is launched with just C:\SomePath\Commodore parameter instead of full path
The issue is in TRSEDocument::UserDefined() probably caused by a line QStringList params = s.split(" ");
Fixed! The user-defined command has been split into a "command" and "parameter list", where the "command" is never split. Please re-open if it doesn't work
In Windows, after pressing CTRL+T path to built file (replaced from
@prg
) gets trimmed if contains spaces. i.e. if output file isC:\SomePath\Commodore 64\project\main.prg
then user defined tool is launched with justC:\SomePath\Commodore
parameter instead of full pathThe issue is in
TRSEDocument::UserDefined()
probably caused by a lineQStringList params = s.split(" ");