aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-01-29 23:39:25 +0100
committerdec05eba <dec05eba@protonmail.com>2020-08-19 00:14:44 +0200
commit4a23517b6beddad8f4e2c5264d309fec590847e7 (patch)
tree8941851acfb11789164b8398068b60e109701566 /include
parentb143297961e93329d2c522194602e0850147e693 (diff)
Fix chat input size with word wrapping, messed up channels sidebar...
Diffstat (limited to 'include')
-rw-r--r--include/ChatWindow.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ChatWindow.hpp b/include/ChatWindow.hpp
index 1ca473b..832154d 100644
--- a/include/ChatWindow.hpp
+++ b/include/ChatWindow.hpp
@@ -13,6 +13,7 @@
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/stack.h>
#include <gtkmm/textview.h>
+#include <gtkmm/stacksidebar.h>
#include <odhtdb/Hash.hpp>
#include <odhtdb/Signature.hpp>
@@ -52,12 +53,12 @@ namespace dchat
void setCurrentRoom(std::shared_ptr<Room> room);
private:
- Gtk::Grid leftPanelChannels;
+ //Gtk::Grid leftPanelChannels;
+ Gtk::StackSidebar leftPanelChannels;
Gtk::Stack leftPanelUsersStack;
ImageButton createRoomButton;
ImageButton joinRoomButton;
ImageButton userSettingsButton;
- Gtk::ScrolledWindow messageArea;
Gtk::Stack messageAreaStack;
Gtk::TextView chatInput;