From b68bc46dc5d7a8d55fbae94ea2a33d31f4deca66 Mon Sep 17 00:00:00 2001 From: Soeren Apel Date: Sat, 27 Jun 2015 13:33:14 +0200 Subject: [PATCH] Fix #501 by deactivating the autocompleter for the signal popup --- pv/view/signal.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pv/view/signal.cpp b/pv/view/signal.cpp index 1896bba..018b68f 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]); -- 2.30.2