wayland: terminal_from_surface(): use term_surface_kind()

This commit is contained in:
Daniel Eklöf 2020-02-24 22:39:37 +01:00
parent 7f270a9f01
commit b725ac4c73
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -1033,11 +1033,8 @@ struct terminal *
wayl_terminal_from_surface(struct wayland *wayl, struct wl_surface *surface)
{
tll_foreach(wayl->terms, it) {
if (it->item->window->surface == surface ||
it->item->window->search_surface == surface)
{
if (term_surface_kind(it->item, surface) != TERM_SURF_NONE)
return it->item;
}
}
assert(false);