GoClipse / goclipse

Eclipse IDE for the Go programming language:
http://goclipse.github.io/
Eclipse Public License 1.0
840 stars 287 forks source link

"Stop" button disappears when making a build while app is running #120

Closed eugene-nikolaev closed 9 years ago

eugene-nikolaev commented 9 years ago

Hello!

Consider an app is launched:

image

When I save a file so a rebuild process is launched, stop button dissapears:

image

And it appears only after the app outputs something (log entries are not being lost).

If an app outputs nothing or does it seldom, I have to terminate it using "Debug" perspective.

Thank you!

bruno-medeiros commented 9 years ago

This is not a bug: each console page in the Console view can supply different buttons. It just so happens that the console for a launch process provides the stop button, but the Go build console doesn't. Maybe this could be done as an enhancement though. Note that you can stop the build with the Progress view, there is a stop button there: untitled

bruno-medeiros commented 9 years ago

In other words, even when no app is running, there is still no stop button for the Go build

bruno-medeiros commented 9 years ago

Also, if it the app that you want to stop, you will need to change to the app console page in the Console view, then the stop button for the app will reappear

eugene-nikolaev commented 9 years ago

Got it, just lack of my Eclipse knowledge. Thanks!