mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-18 02:17:06 +00:00
Fix UPCEAN small font ignored/disabled (introduced [1adba1])
This commit is contained in:
@@ -66,8 +66,8 @@ will be converted to spaces</string>
|
||||
<tr><td>Form Feed (0x0C)</td><td>&nbsp;\f</td></tr>
|
||||
<tr><td>Carriage Return (0x0D)</td><td>&nbsp;\r</td></tr>
|
||||
<tr><td>Escape (0x1B)</td><td>&nbsp;\e</td></tr>
|
||||
<tr><td>Group Selector (0x1D)</td><td>&nbsp;\G</td></tr>
|
||||
<tr><td>Record Selector (0x1E)</td><td>&nbsp;\R</td></tr>
|
||||
<tr><td>Group Separator (0x1D)</td><td>&nbsp;\G</td></tr>
|
||||
<tr><td>Record Separator (0x1E)</td><td>&nbsp;\R</td></tr>
|
||||
<tr><td>Backslash (0x5C)</td><td>&nbsp;\\</td></tr>
|
||||
</table>
|
||||
Note that newlines (Line Feeds (0x0A)) are <br/>not included</string>
|
||||
|
||||
@@ -556,8 +556,8 @@ p, li { white-space: pre-wrap; }
|
||||
<tr><td>\f&nbsp;</td><td>Form Feed (0x0C)</td></tr>
|
||||
<tr><td>\r&nbsp;</td><td>Carriage Return (0x0D)</td></tr>
|
||||
<tr><td>\e&nbsp;</td><td>Escape (0x1B)</td></tr>
|
||||
<tr><td>\G&nbsp;</td><td>Group Selector (0x1D)</td></tr>
|
||||
<tr><td>\R&nbsp;</td><td>Record Selector (0x1E)</td></tr>
|
||||
<tr><td>\G&nbsp;</td><td>Group Separator (0x1D)</td></tr>
|
||||
<tr><td>\R&nbsp;</td><td>Record Separator (0x1E)</td></tr>
|
||||
<tr><td>\\&nbsp;</td><td>Backslash (0x5C)</td></tr>
|
||||
<tr><td>\xNN&nbsp;</td><td>8-bit character (N hex)</td></tr>
|
||||
<tr><td>\uNNNN&nbsp;</td><td>16-bit Unicode (N hex)</td></tr>
|
||||
|
||||
@@ -609,7 +609,6 @@ void MainWindow::change_options()
|
||||
cmbECI->setItemText(25, tr("29: GB 2312 (PRC)"));
|
||||
btype->setItemText(0, tr("No border"));
|
||||
combobox_item_enabled(cmbFontSetting, 1, true);
|
||||
cmbFontSetting->setItemText(2, tr("Small"));
|
||||
|
||||
if (symbology == BARCODE_CODE128)
|
||||
{
|
||||
@@ -974,7 +973,6 @@ void MainWindow::change_options()
|
||||
if (cmbFontSetting->currentIndex() == 1) {
|
||||
cmbFontSetting->setCurrentIndex(0);
|
||||
}
|
||||
cmbFontSetting->setItemText(2, tr("Small (vector only)"));
|
||||
connect(m_optionWidget->findChild<QObject*>("cmbUPCAAddonGap"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview()));
|
||||
}
|
||||
|
||||
@@ -998,7 +996,6 @@ void MainWindow::change_options()
|
||||
if (cmbFontSetting->currentIndex() == 1) {
|
||||
cmbFontSetting->setCurrentIndex(0);
|
||||
}
|
||||
cmbFontSetting->setItemText(2, tr("Small (vector only)"));
|
||||
connect(m_optionWidget->findChild<QObject*>("cmbUPCEANAddonGap"), SIGNAL(currentIndexChanged( int )), SLOT(update_preview()));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user