aboutsummaryrefslogtreecommitdiff
path: root/src/SearchBar.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-06-02 17:42:30 +0200
committerdec05eba <dec05eba@protonmail.com>2021-06-02 17:43:47 +0200
commitcc3a65bde2e480b2b07b74eeef20d9081d7f730f (patch)
tree1bb5b85ab764592093e8042458ec9f4be0cf904a /src/SearchBar.cpp
parent1b6812348e75de21c8f398a7dc944cc427064cc4 (diff)
Add modern theme
Join matrix room by their name instead of id if there is a name. This allows you to join rooms where the homeserver that created the room is no longer participating in the room.
Diffstat (limited to 'src/SearchBar.cpp')
-rw-r--r--src/SearchBar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SearchBar.cpp b/src/SearchBar.cpp
index c0a8aad..f7e732a 100644
--- a/src/SearchBar.cpp
+++ b/src/SearchBar.cpp
@@ -154,7 +154,7 @@ namespace QuickMedia {
void SearchBar::onWindowResize(const sf::Vector2f &size) {
draw_logo = plugin_logo_sprite.getTexture() != nullptr;
- if(size.x * 2.0f < 400.0f)
+ if(size.x < 400.0f)
draw_logo = false;
float font_height = text.getCharacterSize() + 7.0f;