This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 179322

Summary: After running "doctrine:build-all-reload" the cursor goes to the searching field (Ctrl+I)
Product: php Reporter: tirengarfio
Component: SymfonyAssignee: Tomas Mysik <tmysik>
Status: RESOLVED WONTFIX    
Severity: normal CC: tmysik
Priority: P4    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:
Bug Depends on: 204888    
Bug Blocks:    

Description tirengarfio 2010-01-08 10:58:18 UTC
Hi,

just that. After running that task, the cursor should be placed in the output window to type "y" or "n".

Regards

Javi
Comment 1 Tomas Mysik 2010-02-04 09:52:16 UTC
Likely problem in Output window? The external task is run (using external execution API) but the cursor (focus) is not placed in it. Or am I doing something incorrectly?

If I'm wrong, then please reassign back. Thanks.
Comment 2 Jaroslav Havlin 2011-11-07 15:40:42 UTC
Output window tabs are not focused automatically after creation. To show and focus it, something like this is needed:

InputOutput io = IOProvider.getDefault().getIO("ioName", false);
io.select();
IOContainer.getDefault().requestActive();

Reassigning back. Please try to focus the tab in your code. Maybe fix in extexecution will be needed.
Comment 3 Tomas Mysik 2011-11-09 13:29:19 UTC
(In reply to comment #2)
> Maybe fix in extexecution will be needed.

Correct. Filed as enhancement #204888.
Comment 4 Tomas Mysik 2013-07-12 11:33:16 UTC
Is this issue still valid? Please reopen if it is.

Thanks.