mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-17 12:08:46 -04:00
Store icons with a resolution of up to 128x128 px.
Follows what KeePass 2.29 will implement.
This commit is contained in:
parent
93ab7eb058
commit
cf0bc32b27
1 changed files with 3 additions and 3 deletions
|
@ -347,9 +347,9 @@ void Metadata::addCustomIconScaled(const Uuid& uuid, const QImage& icon)
|
|||
{
|
||||
QImage iconScaled;
|
||||
|
||||
// scale down to 64x64 if icon is larger
|
||||
if (icon.width() > 64 || icon.height() > 64) {
|
||||
iconScaled = icon.scaled(QSize(64, 64), Qt::KeepAspectRatio,
|
||||
// scale down to 128x128 if icon is larger
|
||||
if (icon.width() > 128 || icon.height() > 128) {
|
||||
iconScaled = icon.scaled(QSize(128, 128), Qt::KeepAspectRatio,
|
||||
Qt::SmoothTransformation);
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue