From 6104410b81482def99fadd338516924e16af6ac3 Mon Sep 17 00:00:00 2001 From: wonder Date: Sat, 30 Oct 2010 14:32:45 +0000 Subject: [PATCH] Plugin manager: set focus to the filter edit box so that it is possible to search immediately after opening the dialog git-svn-id: http://svn.osgeo.org/qgis/trunk@14456 c8812cc2-4d05-0410-92ff-de0c093fc19c --- src/app/qgspluginmanager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/qgspluginmanager.cpp b/src/app/qgspluginmanager.cpp index 5b1d9c91188..514f0a31980 100644 --- a/src/app/qgspluginmanager.cpp +++ b/src/app/qgspluginmanager.cpp @@ -85,7 +85,6 @@ QgsPluginManager::QgsPluginManager( QgsPythonUtils* pythonUtils, QWidget * paren // QPushButton * btnSelectAll = new QPushButton( tr( "&Select All" ) ); QPushButton * btnClearAll = new QPushButton( tr( "&Clear All" ) ); - btnSelectAll->setDefault( true ); buttonBox->addButton( btnSelectAll, QDialogButtonBox::ActionRole ); buttonBox->addButton( btnClearAll, QDialogButtonBox::ActionRole ); // connect the slot up to catch when a bookmark is deleted @@ -93,6 +92,8 @@ QgsPluginManager::QgsPluginManager( QgsPythonUtils* pythonUtils, QWidget * paren // connect the slot up to catch when a bookmark is zoomed to connect( btnClearAll, SIGNAL( clicked() ), this, SLOT( clearAll() ) ); + leFilter->setFocus( Qt::MouseFocusReason ); + qRegisterMetaType(); // disable plugin installer button for now until we resolve some problems [MD]