mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-243102 [new run config UI] Removing option doesn't disable the option
GitOrigin-RevId: 04894570a5f5180d2a9448c144db8cabe5e24a24
This commit is contained in:
committed by
intellij-monorepo-bot
parent
4190ecdcf2
commit
cf0a619739
@@ -73,7 +73,7 @@ public class CommonParameterFragments<Settings extends CommonProgramRunConfigura
|
||||
FileUtil.toSystemDependentName(notNullize(settings.getInputRedirectOptions().getRedirectInputPath()))),
|
||||
(settings, component) -> {
|
||||
String filePath = component.getComponent().getText();
|
||||
settings.getInputRedirectOptions().setRedirectInput(isNotEmpty(filePath));
|
||||
settings.getInputRedirectOptions().setRedirectInput(component.isVisible() && isNotEmpty(filePath));
|
||||
settings.getInputRedirectOptions().setRedirectInputPath(
|
||||
isEmpty(filePath) ? null : FileUtil.toSystemIndependentName(filePath));
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user