aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-04-05 07:25:21 +0200
committerdec05eba <dec05eba@protonmail.com>2021-04-05 07:25:21 +0200
commit8d8c01258a9414b90ecf3e1e374390543c29c4d9 (patch)
tree9b2e5dcc65e40bbffe9ac607efdad319fcfd88c2 /plugins
parenta105630199bb4be80b3a8228a2c3e5b0c7347625 (diff)
Make the default thumbnail size the same as the body thumbnail size
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Page.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Page.hpp b/plugins/Page.hpp
index b5af7a9..143d9df 100644
--- a/plugins/Page.hpp
+++ b/plugins/Page.hpp
@@ -61,7 +61,7 @@ namespace QuickMedia {
bool load_manga_content_storage(const char *service_name, const std::string &manga_title, const std::string &manga_id);
- virtual sf::Vector2i get_thumbnail_max_size() { return sf::Vector2i(480, 360); };
+ virtual sf::Vector2i get_thumbnail_max_size() { return sf::Vector2i(250, 141); };
Program *program;
std::shared_ptr<BodyItem> submit_body_item; // TODO: Remove this