-
Notifications
You must be signed in to change notification settings - Fork 68
Gui should start in background #1968
Copy link
Copy link
Open
Labels
GUIGraphical User Interface of IDEasy (aka dashboard) build with JavaFxGraphical User Interface of IDEasy (aka dashboard) build with JavaFxprocessexecuting external programs (ProcessContext)executing external programs (ProcessContext)ready-to-implement
Milestone
Metadata
Metadata
Assignees
Labels
GUIGraphical User Interface of IDEasy (aka dashboard) build with JavaFxGraphical User Interface of IDEasy (aka dashboard) build with JavaFxprocessexecuting external programs (ProcessContext)executing external programs (ProcessContext)ready-to-implement
Type
Fields
Give feedbackNo fields configured for Bug.
Projects
Status
🆕 New
Actual behavior
Currently
ide guistarts in foreground.This blocks the current shell so after typing
ide guithe GUI shows up but the terminal is blocked.Only after I exit the GUI, I get
BUILD SUCCESSmessage from maven and can continue using my terminal session.Reproduce
ide guiExpected behavior
The GUI should be launched in the background and my terminal session should be usable even while the GUI is running (just like IDEs such as Eclipse, Intellij, etc.).
IDEasy status
Related/Dependent issues
#1724
Comments/Hints
The GUI should use
ProcessMode.BACKGROUNDto prevent this.