From 5cef1f233ff323e68fd739d8d155cecddc033a69 Mon Sep 17 00:00:00 2001 From: zecke Date: Fri, 25 Mar 2005 15:50:45 +0000 Subject: Fix for #1473: Like the OFileSelector patch show the popup on QToolButton press and do not use setPopup() --- (limited to 'noncore/graphics') 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 @@ -26,7 +26,7 @@ PFileSystem::PFileSystem( QToolBar* bar) this, SLOT( changed() ) ); changed(); - setPopup( m_pop ); + connect(this,SIGNAL(pressed()),SLOT(slotPopUp())); } PFileSystem::~PFileSystem() { @@ -55,6 +55,11 @@ void PFileSystem::changed() { } } +void PFileSystem::slotPopUp() { + m_pop->exec(QCursor::pos()); + setDown(false); +} + void PFileSystem::slotSelectDir( int id ) { emit changeDir( m_dev[m_pop->text(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 @@ -21,6 +21,7 @@ signals: void changeDir( const QString& ); private slots: + void slotPopUp(); void slotSelectDir( int ); void changed(); -- cgit v0.9.0.2