Skip to content

Commit 08a0f31

Browse files
committed
Fix
Task #51 - Terminal doesn't accept input.
1 parent 1b5e1ed commit 08a0f31

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -818,4 +818,24 @@
818818
<git.link>https://github.com/albilu/netbeansPython.git</git.link>
819819
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
820820
</properties>
821+
<profiles>
822+
<profile>
823+
<id>dev</id>
824+
<build>
825+
<plugins>
826+
<plugin>
827+
<groupId>org.apache.maven.plugins</groupId>
828+
<artifactId>maven-gpg-plugin</artifactId>
829+
<version>3.0.1</version>
830+
<executions>
831+
<execution>
832+
<id>sign-artifacts</id>
833+
<phase>none</phase>
834+
</execution>
835+
</executions>
836+
</plugin>
837+
</plugins>
838+
</build>
839+
</profile>
840+
</profiles>
821841
</project>

src/main/java/org/netbeans/modules/python/PythonUtility.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,7 @@ public static ExecutionDescriptor getExecutorDescriptor(ExecutionDescriptor.Line
462462
.frontWindowOnError(select)
463463
.controllable(controllable)
464464
.showProgress(true)
465+
.inputVisible(true)
465466
.outConvertorFactory(convertorFactory)
466467
.errConvertorFactory(convertorFactory)
467468
.preExecution(preExeRunnable)

0 commit comments

Comments
 (0)