From 88d6f955ab6b643bc8874e541ae3fa752b8369ba Mon Sep 17 00:00:00 2001 From: Robin Stuart Date: Sun, 9 Aug 2020 08:21:21 +0100 Subject: [PATCH] Bugfix: Code16k selects GS1 mode by default in GUI --- frontend_qt/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend_qt/mainwindow.cpp b/frontend_qt/mainwindow.cpp index 408a9ff5..61d6e0f0 100644 --- a/frontend_qt/mainwindow.cpp +++ b/frontend_qt/mainwindow.cpp @@ -1095,7 +1095,7 @@ void MainWindow::update_preview() case BARCODE_CODE16K: m_bc.bc.setSymbol(BARCODE_CODE16K); - set_gs1_mode(m_optionWidget->findChild("radC16kStand")->isChecked()); + set_gs1_mode(m_optionWidget->findChild("radC16kGS1")->isChecked()); // Row separator height selection uses option 3 in zint_symbol item_val = m_optionWidget->findChild("cmbC16kRowSepHeight")->currentIndex(); if (item_val) {