aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/libinput.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/libinput.c')
-rw-r--r--sway/input/libinput.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/input/libinput.c b/sway/input/libinput.c
index 10bd0e35..dd4fc0be 100644
--- a/sway/input/libinput.c
+++ b/sway/input/libinput.c
@@ -220,7 +220,8 @@ bool sway_input_configure_libinput_device(struct sway_input_device *input_device
220 220
221 bool changed = false; 221 bool changed = false;
222 if (ic->mapped_to_output && 222 if (ic->mapped_to_output &&
223 !output_by_name_or_id(ic->mapped_to_output)) { 223 strcmp("*", ic->mapped_to_output) != 0 &&
224 !output_by_name_or_id(ic->mapped_to_output)) {
224 sway_log(SWAY_DEBUG, 225 sway_log(SWAY_DEBUG,
225 "%s '%s' is mapped to offline output '%s'; disabling input", 226 "%s '%s' is mapped to offline output '%s'; disabling input",
226 ic->input_type, ic->identifier, ic->mapped_to_output); 227 ic->input_type, ic->identifier, ic->mapped_to_output);