Set view->visible to true when created

This commit is contained in:
Drew DeVault 2015-08-10 17:31:19 -04:00
parent 8f19faf6e7
commit c10fc5b526

View file

@ -186,6 +186,7 @@ void add_view(wlc_handle view_handle) {
view->handle = view_handle;
view->parent = parent;
view->type = C_VIEW;
view->visible = true;
if (title) {
view->name = malloc(strlen(title) + 1);
strcpy(view->name, title);