summaryrefslogtreecommitdiff
path: root/src/components/chatinput.hpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2023-11-09 22:08:14 -0500
committerouwou <26526779+ouwou@users.noreply.github.com>2023-11-09 22:08:14 -0500
commit5cca270eb1c627ae59cf294c9670d31b288b768c (patch)
tree8c13c1a7bcf88b486a8a77edc6545d0e6511cd71 /src/components/chatinput.hpp
parentcb83e30a76d76705c034541c0c1e9ef08b7b4946 (diff)
downloadabaddon-portaudio-5cca270eb1c627ae59cf294c9670d31b288b768c.tar.gz
abaddon-portaudio-5cca270eb1c627ae59cf294c9670d31b288b768c.zip
more making message input look better
Diffstat (limited to 'src/components/chatinput.hpp')
-rw-r--r--src/components/chatinput.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/chatinput.hpp b/src/components/chatinput.hpp
index a3c9742..7ee3921 100644
--- a/src/components/chatinput.hpp
+++ b/src/components/chatinput.hpp
@@ -98,7 +98,7 @@ private:
};
// file upload, text
-class ChatInputTextContainer : public Gtk::Overlay {
+class ChatInputTextContainer : public Gtk::Box {
public:
ChatInputTextContainer();
@@ -110,9 +110,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;