From 64a57a5a658096cf0433689da98b7b0fae0b0991 Mon Sep 17 00:00:00 2001 From: "Ira W. Snyder" Date: Wed, 16 Jan 2008 12:19:44 -0800 Subject: [PATCH] [Window] Hide window decorations The window decorations should not be shown, ever. --- tilda-window.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tilda-window.c b/tilda-window.c index 158d33a..b735532 100644 --- a/tilda-window.c +++ b/tilda-window.c @@ -500,6 +500,8 @@ tilda_window_constructor (GType type, g_object_set (G_OBJECT(self), "key", "F2", NULL); g_object_set (G_OBJECT(self), "x-position", 0, "y-position", 0, NULL); + gtk_window_set_decorated (GTK_WINDOW(self->window), FALSE); + tilda_window_add_term (self); tilda_window_add_term (self); gtk_widget_show_all (self->window); -- 2.25.1