diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-28 12:56:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-28 12:56:53 +0100 |
commit | f668e49faeeb06bf71e8b0d21f745e0f68aab4ba (patch) | |
tree | cd387c91c378a2763bc55b0bfc79aa6554de4540 | |
parent | e3ec1be9415faf1407f3774489187b9a1bcc2894 (diff) | |
parent | de8d87f5ae9f9b18967a820f260619dc1d4bb600 (diff) |
Merge pull request #1340 from emersion/fix-input-method-destroy
input-method-v2: initialize destroy signal
-rw-r--r-- | types/wlr_input_method_v2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/types/wlr_input_method_v2.c b/types/wlr_input_method_v2.c index fc9fa62b..c68ff88b 100644 --- a/types/wlr_input_method_v2.c +++ b/types/wlr_input_method_v2.c @@ -266,6 +266,7 @@ struct wlr_input_method_manager_v2 *wlr_input_method_manager_v2_create( return NULL; } wl_signal_init(&im_manager->events.input_method); + wl_signal_init(&im_manager->events.destroy); wl_list_init(&im_manager->bound_resources); wl_list_init(&im_manager->input_methods); |