From 5b09b967d48614de9a29917a6fd4a83da40d7f48 Mon Sep 17 00:00:00 2001 From: Marco Hugentobler Date: Mon, 18 Jun 2012 11:17:21 +0200 Subject: [PATCH] Small useability improvement: disable autocompletion in scale combo --- src/gui/qgsscalecombobox.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/qgsscalecombobox.cpp b/src/gui/qgsscalecombobox.cpp index 5d9e5ebadd9..8f990d7e27e 100644 --- a/src/gui/qgsscalecombobox.cpp +++ b/src/gui/qgsscalecombobox.cpp @@ -36,6 +36,7 @@ QgsScaleComboBox::QgsScaleComboBox( QWidget* parent ) : QComboBox( parent ) addItem( "1:500" ); setInsertPolicy( QComboBox::NoInsert ); + setCompleter( 0 ); } QgsScaleComboBox::~QgsScaleComboBox()