gtkplug: set decorated to FALSE by default

The change in c5e5ee6749 introduced
a regression - all GtkPlug windows has unexpected extra space. Fix
this by setting decorated to FALSE for GtkPlug window.

https://bugzilla.gnome.org/show_bug.cgi?id=750424
This commit is contained in:
Alberts Muktupāvels 2015-06-04 23:40:38 +03:00 committed by Matthias Clasen
parent c37f569ae8
commit 245daa415e

View File

@ -235,6 +235,8 @@ static void
gtk_plug_init (GtkPlug *plug)
{
plug->priv = gtk_plug_get_instance_private (plug);
gtk_window_set_decorated (GTK_WINDOW (plug), FALSE);
}
/**