-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index e3c3c38..936b1b2 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp | |||
@@ -579,29 +579,30 @@ void MainWindow::create( const Profile& prof ) { | |||
579 | 579 | ||
580 | 580 | ||
581 | QWidget *w = currentSession()->widget(); | 581 | QWidget *w = currentSession()->widget(); |
582 | if(w) w->setFocus(); | 582 | if(w) w->setFocus(); |
583 | 583 | ||
584 | m_kb->load(currentSession()->profile()); | 584 | m_kb->load(currentSession()->profile()); |
585 | } | 585 | } |
586 | 586 | ||
587 | void MainWindow::slotTransfer() | 587 | void MainWindow::slotTransfer() |
588 | { | 588 | { |
589 | if ( currentSession() ) { | 589 | if ( currentSession() ) { |
590 | Session *mysession = currentSession(); | 590 | Session *mysession = currentSession(); |
591 | TransferDialog dlg(mysession->widgetStack(), this); | 591 | TransferDialog dlg(/*mysession->widgetStack()*/this, this); |
592 | mysession->setTransferDialog(&dlg); | 592 | mysession->setTransferDialog(&dlg); |
593 | dlg.show(); | 593 | //dlg.reparent(mysession->widgetStack(), QPoint(0, 0)); |
594 | //dlg.showMaximized(); | 594 | //dlg.showMaximized(); |
595 | //currentSession()->widgetStack()->add(dlg); | 595 | currentSession()->widgetStack()->addWidget(&dlg, -1); |
596 | dlg.show(); | ||
596 | //dlg.exec(); | 597 | //dlg.exec(); |
597 | while(dlg.isRunning()) qApp->processEvents(); | 598 | while(dlg.isRunning()) qApp->processEvents(); |
598 | mysession->setTransferDialog(0l); | 599 | mysession->setTransferDialog(0l); |
599 | } | 600 | } |
600 | } | 601 | } |
601 | 602 | ||
602 | 603 | ||
603 | void MainWindow::slotOpenKeb(bool state) { | 604 | void MainWindow::slotOpenKeb(bool state) { |
604 | 605 | ||
605 | if (state) m_keyBar->show(); | 606 | if (state) m_keyBar->show(); |
606 | else m_keyBar->hide(); | 607 | else m_keyBar->hide(); |
607 | 608 | ||