Skip to content

Commit

Permalink
Console: Improved "conopen" command
Browse files Browse the repository at this point in the history
"conopen" will now open the task bar and focus the command line.
  • Loading branch information
skyjake committed Jun 11, 2013
1 parent 4a1d0c6 commit 6c3a2c0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doomsday/client/src/con_main.cpp
Expand Up @@ -1467,8 +1467,9 @@ void Con_Open(int yes)
#ifdef __CLIENT__
if(yes)
{
ClientWindow::main().taskBar().open();
ClientWindow::main().console().openLog();
ClientWindow &win = ClientWindow::main();
win.taskBar().open();
win.root().setFocus(&win.console().commandLine());
}
else
{
Expand Down

0 comments on commit 6c3a2c0

Please sign in to comment.