From 77240e67f2e262cc9fc053fc2f463e4118ece682 Mon Sep 17 00:00:00 2001 From: luisangelsm Date: Mon, 12 Jan 2026 18:49:47 +0100 Subject: [PATCH] Add a struct for the cases where we need to specify a icon size explicitly --- common/themes/yacreader_icon.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 common/themes/yacreader_icon.h diff --git a/common/themes/yacreader_icon.h b/common/themes/yacreader_icon.h new file mode 100644 index 00000000..152d46a0 --- /dev/null +++ b/common/themes/yacreader_icon.h @@ -0,0 +1,12 @@ +#ifndef YACREADER_ICON_H +#define YACREADER_ICON_H + +#include +#include + +struct YACReaderIcon { + QIcon icon; + QSize size; +}; + +#endif // YACREADER_ICON_H