ServerContextService: Don't use gtk_widget_show_all

This gives children more flexibility without using `no_show_all`.
This commit is contained in:
Guido Günther
2019-07-17 16:13:43 +02:00
parent 7690ef9a1a
commit 07d6e3a0f2

View File

@ -246,6 +246,7 @@ update_widget (ServerContextService *context)
gtk_widget_set_has_tooltip (context->widget, TRUE);
gtk_container_add (GTK_CONTAINER(context->window), context->widget);
gtk_widget_show (context->widget);
set_geometry (context);
}
@ -260,7 +261,7 @@ server_context_service_real_show_keyboard (EekboardContextService *_context)
EEKBOARD_CONTEXT_SERVICE_CLASS (server_context_service_parent_class)->
show_keyboard (_context);
gtk_widget_show_all (context->window);
gtk_widget_show (context->window);
}
static void