From 73ec2adb7b4b4a1a6d3b15b9dc9087941316a4c9 Mon Sep 17 00:00:00 2001 From: ouwou <26526779+ouwou@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:06:48 -0500 Subject: fix some keybinds not working in the chat input (fixes #135) --- src/components/chatinput.hpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/components/chatinput.hpp') diff --git a/src/components/chatinput.hpp b/src/components/chatinput.hpp index 3b7bc79..bc6a45d 100644 --- a/src/components/chatinput.hpp +++ b/src/components/chatinput.hpp @@ -83,15 +83,18 @@ public: using type_signal_submit = sigc::signal; using type_signal_escape = sigc::signal; using type_signal_image_paste = sigc::signal>; + using type_signal_key_press_proxy = sigc::signal; type_signal_submit signal_submit(); type_signal_escape signal_escape(); type_signal_image_paste signal_image_paste(); + type_signal_key_press_proxy signal_key_press_proxy(); private: type_signal_submit m_signal_submit; type_signal_escape m_signal_escape; type_signal_image_paste m_signal_image_paste; + type_signal_key_press_proxy m_signal_key_press_proxy; }; // file upload, text -- cgit v1.2.3