summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/filesystem.cpp
Side-by-side diff
Diffstat (limited to 'noncore/graphics/opie-eye/gui/filesystem.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/filesystem.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/gui/filesystem.cpp b/noncore/graphics/opie-eye/gui/filesystem.cpp
index 6f1c64a..8efcdf7 100644
--- a/noncore/graphics/opie-eye/gui/filesystem.cpp
+++ b/noncore/graphics/opie-eye/gui/filesystem.cpp
@@ -23,13 +23,13 @@ PFileSystem::PFileSystem( QToolBar* bar)
m_storage = new StorageInfo();
connect(m_storage, SIGNAL(disksChanged() ),
this, SLOT( changed() ) );
changed();
- setPopup( m_pop );
+ connect(this,SIGNAL(pressed()),SLOT(slotPopUp()));
}
PFileSystem::~PFileSystem() {
delete m_storage;
}
@@ -52,9 +52,14 @@ void PFileSystem::changed() {
const QString path = (*it)->path();
m_dev.insert( disk, path );
m_pop->insertItem( disk );
}
}
+void PFileSystem::slotPopUp() {
+ m_pop->exec(QCursor::pos());
+ setDown(false);
+}
+
void PFileSystem::slotSelectDir( int id ) {
emit changeDir( m_dev[m_pop->text(id )] );
}