Add support for foreground and background entry colors

* Add foreground/background color elements to advanced tab
* Center paperclip icon
This commit is contained in:
Jonathan White 2018-02-19 14:59:04 -05:00 committed by Janek Bevendorff
parent 6a85556b33
commit ca30d1832d
5 changed files with 186 additions and 24 deletions

View file

@ -700,7 +700,8 @@ Entry* KdbxXmlReader::parseEntry(bool history)
entry->setIcon(uuid);
}
continue;
}if (m_xml.name() == "ForegroundColor") {
}
if (m_xml.name() == "ForegroundColor") {
entry->setForegroundColor(readColor());
continue;
}