aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/chat_input/chat_text_view.vala
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-09-11 21:47:22 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-10-09 14:08:58 +0200
commit1cc99a640fe694c1545eb2ecc01311f7bad26aed (patch)
tree56fcc1894368cbd6a4e94e85e463fab8e628909b /main/src/ui/chat_input/chat_text_view.vala
parentfefcf353520ebbe9e63f59e25a85fc122a5acc7a (diff)
Limit max_content_height
Diffstat (limited to 'main/src/ui/chat_input/chat_text_view.vala')
-rw-r--r--main/src/ui/chat_input/chat_text_view.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/chat_input/chat_text_view.vala b/main/src/ui/chat_input/chat_text_view.vala
index 6be9df95..6b85b082 100644
--- a/main/src/ui/chat_input/chat_text_view.vala
+++ b/main/src/ui/chat_input/chat_text_view.vala
@@ -42,7 +42,7 @@ public class ChatTextView : ScrolledWindow {
private SpellChecker spell_checker;
construct {
- max_content_height = 300;
+ max_content_height = 128;
propagate_natural_height = true;
this.add(text_view);