aboutsummaryrefslogtreecommitdiff
path: root/src/QuickMedia.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-02-09 22:13:27 +0100
committerdec05eba <dec05eba@protonmail.com>2021-02-09 22:13:50 +0100
commite1bbef2d64de09e0eef88410d69ac772d34d79ad (patch)
tree84f221e51443b99965d26809e63b03305d2b3600 /src/QuickMedia.cpp
parent31be2fd556fbfd6679ca2bcc131450e6853c155e (diff)
Matrix: final room sort, hide room list behind reply/edit
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);