-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index 5f6dc12..e3c3c38 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -452,3 +452,10 @@ void MainWindow::slotConnect() { m_disconnect->setEnabled( true ); + + // if it does not support file transfer, disable the menu entry + if ( ( m_curSession->layer() )->supports()[1] == 0 ) { + m_transfer->setEnabled( false ); + } else { m_transfer->setEnabled( true ); + } + m_recordScript->setEnabled( true ); @@ -573,3 +580,2 @@ void MainWindow::create( const Profile& prof ) { - QWidget *w = currentSession()->widget(); |