]> sigrok.org Git - pulseview.git/commitdiff
Fix #501 by deactivating the autocompleter for the signal popup
authorSoeren Apel <redacted>
Sat, 27 Jun 2015 11:33:14 +0000 (13:33 +0200)
committerSoeren Apel <redacted>
Sat, 27 Jun 2015 11:33:14 +0000 (13:33 +0200)
pv/view/signal.cpp

index 1896bba2c4a177ca26af309b005793be6dbbfc03..018b68f218fbbb3ae2bdac17c21e9c853ca23538 100644 (file)
@@ -105,6 +105,7 @@ void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
 
        name_widget_ = new QComboBox(parent);
        name_widget_->setEditable(true);
 
        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]);
 
        for(unsigned int i = 0; i < countof(ChannelNames); i++)
                name_widget_->insertItem(i, ChannelNames[i]);