-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index 49f9653..afac542 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -434,8 +434,11 @@ void MainWindow::create( const Profile& prof ) { //if ( ( m_curSession->layer() )->supports()[0] == 1 ) { if (prof.autoConnect()) { slotConnect(); } + + QWidget *w = currentSession()->widget(); + if(w) w->setFocus(); } void MainWindow::slotTransfer() { @@ -478,8 +481,11 @@ void MainWindow::slotSessionChanged( Session* ses ) { } else { m_connect->setEnabled( true ); m_disconnect->setEnabled( false ); } + + QWidget *w = m_curSession->widget(); + if(w) w->setFocus(); } } void MainWindow::slotFullscreen() { |