From 7f211fe02815edd3e36c6e6d2973cc74ff98dc8e Mon Sep 17 00:00:00 2001 From: Narr the Reg Date: Tue, 1 Feb 2022 14:53:36 -0600 Subject: [PATCH] input_common: Use recursive mutex --- src/input_common/input_engine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input_common/input_engine.h b/src/input_common/input_engine.h index fe2faee5a5..4f620b2290 100644 --- a/src/input_common/input_engine.h +++ b/src/input_common/input_engine.h @@ -217,7 +217,7 @@ private: int index) const; mutable std::mutex mutex; - mutable std::mutex mutex_callback; + mutable std::recursive_mutex mutex_callback; bool configuring{false}; const std::string input_engine; int last_callback_key = 0;