aboutsummaryrefslogtreecommitdiff
path: root/src/QuickMedia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/QuickMedia.cpp')
-rw-r--r--src/QuickMedia.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/QuickMedia.cpp b/src/QuickMedia.cpp
index 3bd75d6..205b201 100644
--- a/src/QuickMedia.cpp
+++ b/src/QuickMedia.cpp
@@ -4739,6 +4739,11 @@ namespace QuickMedia {
item_background.setPosition(sf::Vector2f(0.0f, body_item_pos.y - replying_to_text_height - margin));
item_background.setFillColor(back_color);
window.draw(item_background);
+
+ sf::RectangleShape message_box_shade_left(sf::Vector2f(body_pos.x, chat_input_height_full));
+ message_box_shade_left.setPosition(0.0f, window_size.y - chat_input_height_full);
+ message_box_shade_left.setFillColor(chat_input_shade.getFillColor());
+ window.draw(message_box_shade_left);
replying_to_text.setPosition(body_item_pos.x, body_item_pos.y - replying_to_text_height);
window.draw(replying_to_text);