aboutsummaryrefslogtreecommitdiff
path: root/src/Entry.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-06-16 14:43:20 +0200
committerdec05eba <dec05eba@protonmail.com>2022-06-16 15:09:30 +0200
commitad2685624cf233456623c5fa34083412df53873c (patch)
tree370acf204f01a9a6d877345b5f41977a8edd8441 /src/Entry.cpp
parente471a1f93ee23f0f729d64068504cb892481b56f (diff)
Soundcloud: fix title and download link not updating when changing video, fix text y offset after mgl update
Diffstat (limited to 'src/Entry.cpp')
-rw-r--r--src/Entry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entry.cpp b/src/Entry.cpp
index c3ecb40..af35de0 100644
--- a/src/Entry.cpp
+++ b/src/Entry.cpp
@@ -110,7 +110,7 @@ namespace QuickMedia {
void Entry::set_position(const mgl::vec2f &pos) {
background.set_position(pos);
text.set_position(pos + mgl::vec2f(background_margin_horizontal, background_margin_vertical));
- placeholder.set_position(pos + mgl::vec2f(background_margin_horizontal, background_margin_vertical + floor(-1.0f * get_config().scale)));
+ placeholder.set_position(pos + mgl::vec2f(background_margin_horizontal, background_margin_vertical + floor(3.0f * get_config().scale)));
}
void Entry::set_max_width(float width) {