summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2020-11-28 01:34:26 -0500
committerouwou <26526779+ouwou@users.noreply.github.com>2020-11-28 01:34:26 -0500
commit6f7ea234e559b8a43b40fa325f3425c2e8a8e6fd (patch)
tree11d3b6c330d7c3d9ee96af6f7fd6d6ad38c2054a /windows
parentf71caf9fbd4114969980cad353515e15ac0f3c35 (diff)
downloadabaddon-portaudio-6f7ea234e559b8a43b40fa325f3425c2e8a8e6fd.tar.gz
abaddon-portaudio-6f7ea234e559b8a43b40fa325f3425c2e8a8e6fd.zip
dont squish channels on window resize
Diffstat (limited to 'windows')
-rw-r--r--windows/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/mainwindow.cpp b/windows/mainwindow.cpp
index dfb6c2b..0ff95e6 100644
--- a/windows/mainwindow.cpp
+++ b/windows/mainwindow.cpp
@@ -86,8 +86,8 @@ MainWindow::MainWindow()
m_chan_chat_paned.pack1(*channel_list);
m_chan_chat_paned.pack2(m_chat_members_paned);
- m_chan_chat_paned.child_property_shrink(*channel_list) = true;
- m_chan_chat_paned.child_property_resize(*channel_list) = true;
+ m_chan_chat_paned.child_property_shrink(*channel_list) = false;
+ m_chan_chat_paned.child_property_resize(*channel_list) = false;
m_chan_chat_paned.set_position(200);
m_content_box.add(m_chan_chat_paned);