mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Restore link for alpha option from GUI
This commit is contained in:
parent
b78fa8cf2f
commit
0a6459aed6
@ -87,8 +87,13 @@ namespace Zint {
|
|||||||
}
|
}
|
||||||
|
|
||||||
strcpy(m_zintSymbol->fgcolour, m_fgColor.name().toLatin1().right(6));
|
strcpy(m_zintSymbol->fgcolour, m_fgColor.name().toLatin1().right(6));
|
||||||
|
if (m_fgColor.alpha() != 0xff) {
|
||||||
|
strcat(m_zintSymbol->fgcolour, m_fgColor.name(QColor::HexArgb).toLatin1().mid(1,2));
|
||||||
|
}
|
||||||
strcpy(m_zintSymbol->bgcolour, m_bgColor.name().toLatin1().right(6));
|
strcpy(m_zintSymbol->bgcolour, m_bgColor.name().toLatin1().right(6));
|
||||||
|
if (m_bgColor.alpha() != 0xff) {
|
||||||
|
strcat(m_zintSymbol->bgcolour, m_bgColor.name(QColor::HexArgb).toLatin1().mid(1,2));
|
||||||
|
}
|
||||||
strcpy(m_zintSymbol->primary, m_primaryMessage.toLatin1().left(127));
|
strcpy(m_zintSymbol->primary, m_primaryMessage.toLatin1().left(127));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user