author | harlekin <harlekin> | 2002-10-26 11:53:47 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-10-26 11:53:47 (UTC) |
commit | 88504fa6ed3e4ec1c11d3e1cde13c821b1a9b846 (patch) (unidiff) | |
tree | b3acc8683f44c7fa960c4d422ae781ed7b854f65 | |
parent | 2dc92ada34785bbfff8ca1202e4d53eb0606c362 (diff) | |
download | opie-88504fa6ed3e4ec1c11d3e1cde13c821b1a9b846.zip opie-88504fa6ed3e4ec1c11d3e1cde13c821b1a9b846.tar.gz opie-88504fa6ed3e4ec1c11d3e1cde13c821b1a9b846.tar.bz2 |
only enable tranfer if layer supports it
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 10 |
1 files changed, 8 insertions, 2 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() { | |||
452 | m_disconnect->setEnabled( true ); | 452 | m_disconnect->setEnabled( true ); |
453 | m_transfer->setEnabled( true ); | 453 | |
454 | // if it does not support file transfer, disable the menu entry | ||
455 | if ( ( m_curSession->layer() )->supports()[1] == 0 ) { | ||
456 | m_transfer->setEnabled( false ); | ||
457 | } else { | ||
458 | m_transfer->setEnabled( true ); | ||
459 | } | ||
460 | |||
454 | m_recordScript->setEnabled( true ); | 461 | m_recordScript->setEnabled( true ); |
@@ -573,3 +580,2 @@ void MainWindow::create( const Profile& prof ) { | |||
573 | 580 | ||
574 | |||
575 | QWidget *w = currentSession()->widget(); | 581 | QWidget *w = currentSession()->widget(); |