Added dynamic height to text box (#112)

Co-authored-by: Jeffry Samuel <69224322+Jeffser@users.noreply.github.com>
This commit is contained in:
BurntSouls 2024-07-03 12:03:31 -07:00 committed by GitHub
parent 1598e1e60a
commit ccc92bd541
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -213,16 +213,23 @@
</style>
<child>
<object class="GtkScrolledWindow">
<property name="max-content-height">300</property>
<property name="margin-start">12</property>
<property name="margin-end">12</property>
<property name="propagate-natural-height">true</property>
<style>
<class name="message-input"/>
<class name="undershoot-bottom"/>
<class name="undershoot-top"/>
</style>
<child>
<object class="GtkTextView" id="message_text_view">
<style>
<class name="message_text_view" />
</style>
<property name="wrap-mode">word</property>
<property name="top-margin">6</property>
<property name="bottom-margin">6</property>
<property name="top-margin">18</property>
<property name="bottom-margin">18</property>
<property name="hexpand">true</property>
</object>
</child>