mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-09 07:08:07 +02:00
text: Launch input method in text_backend_init
Previously we tried to launch the input method every time a seat was created, and the launch function would notice it was running and not bother to actually launch. Signed-off-by: Derek Foreman <derekf@osg.samsung.com>
This commit is contained in:
parent
e7d868aaad
commit
b4bacd258d
1 changed files with 2 additions and 2 deletions
|
|
@ -1005,8 +1005,6 @@ text_backend_seat_created(struct text_backend *text_backend,
|
|||
wl_signal_add(&seat->destroy_signal, &input_method->destroy_listener);
|
||||
|
||||
seat->input_method = input_method;
|
||||
|
||||
launch_input_method(text_backend);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
@ -1071,5 +1069,7 @@ text_backend_init(struct weston_compositor *ec)
|
|||
|
||||
text_input_manager_create(ec);
|
||||
|
||||
launch_input_method(text_backend);
|
||||
|
||||
return text_backend;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue