mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-13 22:54:35 -04:00
Revert "Select escape mode from GUI"
This reverts commit 7f897608d4
.
After testing it was found this doesn't work in Windows - further testing is required before adding this functionality to the GUI.
This commit is contained in:
parent
7f897608d4
commit
a91e4fab79
2 changed files with 4 additions and 4 deletions
|
@ -733,7 +733,7 @@ void MainWindow::update_preview()
|
|||
}
|
||||
m_bc.bc.setSecurityLevel(0);
|
||||
m_bc.bc.setWidth(0);
|
||||
m_bc.bc.setInputMode(UNICODE_MODE + ESCAPE_MODE);
|
||||
m_bc.bc.setInputMode(UNICODE_MODE);
|
||||
m_bc.bc.setHideText(0);
|
||||
if(chkHRTHide->isChecked() == false) {
|
||||
m_bc.bc.setHideText(1);
|
||||
|
@ -895,7 +895,7 @@ void MainWindow::update_preview()
|
|||
case BARCODE_CODE16K:
|
||||
m_bc.bc.setSymbol(BARCODE_CODE16K);
|
||||
if(m_optionWidget->findChild<QRadioButton*>("radC16kStand")->isChecked())
|
||||
m_bc.bc.setInputMode(UNICODE_MODE + ESCAPE_MODE);
|
||||
m_bc.bc.setInputMode(UNICODE_MODE);
|
||||
else
|
||||
m_bc.bc.setInputMode(GS1_MODE);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue