From: Soeren Apel Date: Sat, 27 Jun 2015 11:33:14 +0000 (+0200) Subject: Fix #501 by deactivating the autocompleter for the signal popup X-Git-Tag: pulseview-0.3.0~185 X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=b68bc46dc5d7a8d55fbae94ea2a33d31f4deca66;hp=a285ce3f0cba825ac302200d1078a6bcfaf60e27 Fix #501 by deactivating the autocompleter for the signal popup --- diff --git a/pv/view/signal.cpp b/pv/view/signal.cpp index 1896bba2..018b68f2 100644 --- a/pv/view/signal.cpp +++ b/pv/view/signal.cpp @@ -105,6 +105,7 @@ void Signal::populate_popup_form(QWidget *parent, QFormLayout *form) name_widget_ = new QComboBox(parent); name_widget_->setEditable(true); + name_widget_->setCompleter(0); for(unsigned int i = 0; i < countof(ChannelNames); i++) name_widget_->insertItem(i, ChannelNames[i]);