From 2399563041f28c50ffbd4e941487dd13f216630d Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Wed, 5 Jun 2019 11:35:07 -0400 Subject: [PATCH] Blank value for custom fields dropdown should be first --- logqso.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logqso.cpp b/logqso.cpp index c2715fd..15276b3 100644 --- a/logqso.cpp +++ b/logqso.cpp @@ -75,8 +75,8 @@ void LogQSO::createAdditionalField(QString key, QString value){ } QComboBox * c = new QComboBox(this); - c->insertItem(0, ""); c->insertItems(0, ADIF_FIELDS); + c->insertItem(0, ""); c->setEditable(false); connect(c, &QComboBox::currentTextChanged, this, [this, l](const QString &text){ l->setProperty("fieldKey", QVariant(text));