fix: Zig run exe args not available
This commit is contained in:
parent
4d63571590
commit
63a1b0c199
2 changed files with 4 additions and 1 deletions
|
@ -22,6 +22,9 @@ Changelog structure reference:
|
||||||
- Debugging
|
- Debugging
|
||||||
- The debugger no longer freezes the IDE while zig is compiling
|
- The debugger no longer freezes the IDE while zig is compiling
|
||||||
|
|
||||||
|
- Project
|
||||||
|
- Exe args for zig run not visible in the GUI
|
||||||
|
|
||||||
## [14.2.0]
|
## [14.2.0]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -75,7 +75,7 @@ public class ZigExecConfigRun extends ZigExecConfigBase<ZigExecConfigRun> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public @NotNull List<ZigConfigEditor.ZigConfigurable<?>> getConfigurables() {
|
public @NotNull List<ZigConfigEditor.ZigConfigurable<?>> getConfigurables() {
|
||||||
return CollectionUtil.concat(super.getConfigurables(), filePath, optimization, colored);
|
return CollectionUtil.concat(super.getConfigurables(), filePath, optimization, colored, exeArgs);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue