diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-12-26 07:14:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-26 07:14:43 +0000 |
commit | ffc29b82142d992bb3c1fa012a3e93d57ff2a219 (patch) | |
tree | 6e3329b7761243672f694fc680ee3b25f0cddbe4 /src/components/chatinput.hpp | |
parent | 705938a0a8a02ece99bc6040c615ccf8ea5afa71 (diff) | |
parent | 6c89abb3c35c9a45c33d13bb0e3f5d4677cdb676 (diff) | |
download | abaddon-portaudio-ffc29b82142d992bb3c1fa012a3e93d57ff2a219.tar.gz abaddon-portaudio-ffc29b82142d992bb3c1fa012a3e93d57ff2a219.zip |
Merge pull request #252 from uowuo/theming
Use GTK themes
Diffstat (limited to 'src/components/chatinput.hpp')
-rw-r--r-- | src/components/chatinput.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/chatinput.hpp b/src/components/chatinput.hpp index be8c141..231d67c 100644 --- a/src/components/chatinput.hpp +++ b/src/components/chatinput.hpp @@ -104,7 +104,7 @@ private: }; // file upload, text -class ChatInputTextContainer : public Gtk::Overlay { +class ChatInputTextContainer : public Gtk::Box { public: ChatInputTextContainer(); @@ -116,9 +116,9 @@ public: private: void ShowFileChooser(); - bool GetChildPosition(Gtk::Widget *child, Gdk::Rectangle &pos); - Gtk::EventBox m_upload_ev; + Gtk::Box m_upload_box; + Gtk::Button m_upload_button; Gtk::Image m_upload_img; ChatInputText m_input; |