Add a struct for the cases where we need to specify a icon size explicitly

This commit is contained in:
luisangelsm
2026-01-12 18:49:47 +01:00
parent 390b24514c
commit 77240e67f2

View File

@ -0,0 +1,12 @@
#ifndef YACREADER_ICON_H
#define YACREADER_ICON_H
#include <QIcon>
#include <QSize>
struct YACReaderIcon {
QIcon icon;
QSize size;
};
#endif // YACREADER_ICON_H