Update wording about unmanaged/unmapped views

This commit is contained in:
Ryan Dwyer 2018-04-24 20:14:22 +10:00
parent 689a6a5605
commit dfc26c664f
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ struct sway_view {
enum sway_view_type type;
const struct sway_view_impl *impl;
struct sway_container *swayc; // NULL for unmanaged views
struct sway_container *swayc; // NULL for unmapped views
struct wlr_surface *surface; // NULL for unmapped views
int width, height;
bool is_fullscreen;

View File

@ -212,7 +212,7 @@ static void view_handle_container_reparent(struct wl_listener *listener,
}
static void view_execute_criteria(struct sway_view *view) {
if (!sway_assert(view->swayc, "cannot run criteria for unmanaged view")) {
if (!sway_assert(view->swayc, "cannot run criteria for unmapped view")) {
return;
}
struct sway_seat *seat = input_manager_current_seat(input_manager);