summaryrefslogtreecommitdiff
path: root/src/drivers/Wayland
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2025-08-08 18:13:43 +0200
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2025-08-08 18:13:43 +0200
commit36b9a990fe17a90e23c36c5200e7342dfdfb4c1b (patch)
tree212530977005797fd308a40883adf459522aa585 /src/drivers/Wayland
parent0e6c61e6fccd57cea491e1c3f8019cea4ae942b3 (diff)
Wayland: Some shortcut keys not delivered when input widget has focus (#1290)
Diffstat (limited to 'src/drivers/Wayland')
-rw-r--r--src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx b/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx
index ec5faefc7..e9b792b69 100644
--- a/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx
+++ b/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx
@@ -683,6 +683,7 @@ int Fl_Wayland_Screen_Driver::compose(int& del) {
// FL_Home FL_Left FL_Up FL_Right FL_Down FL_Page_Up FL_Page_Down FL_End
// FL_Print FL_Insert FL_Menu FL_Help and more
condition |= (Fl::e_keysym >= FL_Home && Fl::e_keysym <= FL_Help);
+ condition |= (Fl::e_keysym >= FL_F && Fl::e_keysym <= FL_F_Last);
condition |= Fl::e_keysym == FL_Tab;
//fprintf(stderr, "compose: condition=%d e_state=%x ascii=%d\n", condition, Fl::e_state, ascii);
if (condition) { del = 0; return 0;}