diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-12-04 18:37:18 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2020-12-04 18:37:18 -0500 |
commit | 229edff83f2aa6f7efe301a15d33e2ad11c0a47e (patch) | |
tree | 44d679a4873963001f9b452155702516d6218b94 /components | |
parent | d8b788829ae56d6a2f8ec15c26ec2b84ce8d1b64 (diff) | |
download | abaddon-portaudio-229edff83f2aa6f7efe301a15d33e2ad11c0a47e.tar.gz abaddon-portaudio-229edff83f2aa6f7efe301a15d33e2ad11c0a47e.zip |
fix #3
Diffstat (limited to 'components')
-rw-r--r-- | components/chatwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/chatwindow.cpp b/components/chatwindow.cpp index bf7d506..7a9842d 100644 --- a/components/chatwindow.cpp +++ b/components/chatwindow.cpp @@ -50,7 +50,7 @@ ChatWindow::ChatWindow() { m_input->set_wrap_mode(Gtk::WRAP_WORD_CHAR); m_input_scroll->set_max_content_height(200); - m_input_scroll->set_policy(Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC); + m_input_scroll->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); m_input_scroll->add(*m_input); m_scroll->add(*m_list); |