add setting to export card notes in meta data

This commit is contained in:
GenevensiS
2025-11-29 12:08:00 +01:00
parent 614f69ab47
commit 22b3a3e8b2
6 changed files with 28 additions and 11 deletions
+4 -1
View File
@@ -92,7 +92,10 @@ void PackageList::showData(const String& pattern) {
Image img;
Bitmap bmp;
if (stream && image_load_file(img, *stream)) {
bmp = Bitmap(img);
bmp = Bitmap(img);
if (bmp.GetWidth() > 150 || bmp.GetHeight() > 150) {
queue_message(MESSAGE_WARNING, _ERROR_1_("icon too large", p->relativeFilename()));
}
}
// add to list
packages.push_back(PackageData(p, bmp));