projects
/
pulseview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a285ce3
)
Fix #501 by deactivating the autocompleter for the signal popup
author
Soeren Apel
<soeren@apelpie.net>
Sat, 27 Jun 2015 11:33:14 +0000
(13:33 +0200)
committer
Soeren Apel
<soeren@apelpie.net>
Sat, 27 Jun 2015 11:33:14 +0000
(13:33 +0200)
pv/view/signal.cpp
patch
|
blob
|
history
diff --git
a/pv/view/signal.cpp
b/pv/view/signal.cpp
index 1896bba2c4a177ca26af309b005793be6dbbfc03..018b68f218fbbb3ae2bdac17c21e9c853ca23538 100644
(file)
--- 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]);