aboutsummaryrefslogtreecommitdiff
path: root/src/QuickMedia.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-10-13 00:14:11 +0200
committerdec05eba <dec05eba@protonmail.com>2019-10-13 00:15:00 +0200
commitcc25c30cf177ee83d800925c72b7d334b76fb83d (patch)
treeea15e684648a425406f6fac25ef25e10c4142fdd /src/QuickMedia.cpp
parenta3526002980b3ebc112ec6f272923a5196c072cd (diff)
Use image mirror 2 for manganelo
The first one can sometimes get stuck up to 20 seconds before it even starts download...
Diffstat (limited to 'src/QuickMedia.cpp')
-rw-r--r--src/QuickMedia.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/QuickMedia.cpp b/src/QuickMedia.cpp
index 35bf9f7..bcd3efe 100644
--- a/src/QuickMedia.cpp
+++ b/src/QuickMedia.cpp
@@ -854,9 +854,9 @@ namespace QuickMedia {
bool resized = true;
sf::Event event;
- sf::Text chapter_text(chapter_title + std::string(" | Page ") + std::to_string(image_index + 1) + "/" + std::to_string(num_images), font, 14);
+ sf::Text chapter_text(chapter_title + " | Page " + std::to_string(image_index + 1) + "/" + std::to_string(num_images), font, 14);
if(image_index == num_images)
- chapter_text.setString("End");
+ chapter_text.setString(chapter_title + " | End");
chapter_text.setFillColor(sf::Color::White);
sf::RectangleShape chapter_text_background;
chapter_text_background.setFillColor(sf::Color(0, 0, 0, 150));