aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2022-06-08 22:11:24 +0200
committervaxerski <[email protected]>2022-06-08 22:11:24 +0200
commit248ce664593feddd84d6897ae6b40a3a5fa145c0 (patch)
tree1d9a7d0a54832280d9159aad7eab145646bc94d1
parent638b44cabd9e9f1d22f9d176345ffe8f8c7969c7 (diff)
downloadHyprland-248ce664593feddd84d6897ae6b40a3a5fa145c0.tar.gz
Hyprland-248ce664593feddd84d6897ae6b40a3a5fa145c0.zip
warn unrecognized input devices
-rw-r--r--src/events/Devices.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/events/Devices.cpp b/src/events/Devices.cpp
index 748006fe..89443af2 100644
--- a/src/events/Devices.cpp
+++ b/src/events/Devices.cpp
@@ -79,6 +79,7 @@ void Events::listener_newInput(wl_listener* listener, void* data) {
wlr_cursor_attach_input_device(g_pCompositor->m_sWLRCursor, DEVICE);
break;
default:
+ Debug::log(WARN, "Unrecognized input device plugged in: %s", DEVICE->name);
break;
}