diff include/gui/widgets/anime_button.h @ 348:6b0768158dcd

text: redesign almost every widget i.e. Paragraph is now a QLabel, etc etc, some things will probably break, idc
author Paper <paper@paper.us.eu.org>
date Tue, 25 Jun 2024 11:19:54 -0400
parents f31305b9f60a
children f81bed4e04ac
line wrap: on
line diff
--- a/include/gui/widgets/anime_button.h	Sun Jun 23 10:32:09 2024 -0400
+++ b/include/gui/widgets/anime_button.h	Tue Jun 25 11:19:54 2024 -0400
@@ -14,6 +14,8 @@
 }
 
 class AnimeButton : public QFrame {
+	Q_OBJECT
+
 public:
 	AnimeButton(QWidget* parent = nullptr);
 	AnimeButton(const Anime::Anime& anime, QWidget* parent = nullptr);
@@ -23,7 +25,7 @@
 	Poster _poster;
 	QLabel _title;
 	TextWidgets::LabelledParagraph _info;
-	ElidedLabel _synopsis;
+	TextWidgets::Paragraph _synopsis;
 };
 
 #endif // MINORI_GUI_WIDGETS_ANIME_BUTTON_H_