summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/filesystem.cpp7
-rw-r--r--noncore/graphics/opie-eye/gui/filesystem.h1
2 files changed, 7 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
@@ -28,3 +28,3 @@ PFileSystem::PFileSystem( QToolBar* bar)
- setPopup( m_pop );
+ connect(this,SIGNAL(pressed()),SLOT(slotPopUp()));
}
@@ -57,2 +57,7 @@ void PFileSystem::changed() {
+void PFileSystem::slotPopUp() {
+ m_pop->exec(QCursor::pos());
+ setDown(false);
+}
+
void PFileSystem::slotSelectDir( int id ) {
diff --git a/noncore/graphics/opie-eye/gui/filesystem.h b/noncore/graphics/opie-eye/gui/filesystem.h
index a29ad87..dbd9d4a 100644
--- a/noncore/graphics/opie-eye/gui/filesystem.h
+++ b/noncore/graphics/opie-eye/gui/filesystem.h
@@ -23,2 +23,3 @@ signals:
private slots:
+ void slotPopUp();
void slotSelectDir( int );