diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-11-09 02:20:42 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-11-09 02:20:42 -0500 |
commit | cb83e30a76d76705c034541c0c1e9ef08b7b4946 (patch) | |
tree | 37be8d863e6c9e1d3cefb0bccf31833e9438c78c /src/components/chatinput.cpp | |
parent | 25aadd4181b5f82f0315931b2b15953746d33af3 (diff) | |
download | abaddon-portaudio-cb83e30a76d76705c034541c0c1e9ef08b7b4946.tar.gz abaddon-portaudio-cb83e30a76d76705c034541c0c1e9ef08b7b4946.zip |
message input theme tweaking
Diffstat (limited to 'src/components/chatinput.cpp')
-rw-r--r-- | src/components/chatinput.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/chatinput.cpp b/src/components/chatinput.cpp index c802413..af092e1 100644 --- a/src/components/chatinput.cpp +++ b/src/components/chatinput.cpp @@ -20,7 +20,7 @@ ChatInputText::ChatInputText() { m_textview.signal_key_press_event().connect(cb, false); m_textview.set_hexpand(false); m_textview.set_halign(Gtk::ALIGN_FILL); - m_textview.set_valign(Gtk::ALIGN_CENTER); + m_textview.set_valign(Gtk::ALIGN_FILL); m_textview.set_wrap_mode(Gtk::WRAP_WORD_CHAR); m_textview.show(); add(m_textview); |