From 638a1b2266fcfc7fbbcee7ec4c1d479a00de425f Mon Sep 17 00:00:00 2001 From: "Ira W. Snyder" Date: Thu, 17 Jan 2008 18:02:48 -0800 Subject: [PATCH 1/1] [Window] Add more hardcoded settings for testing Add some more settings which are just hardcoded in the source for the sake of testing until the configuration system is integrated. --- tilda-window.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tilda-window.c b/tilda-window.c index be5067d..929a934 100644 --- a/tilda-window.c +++ b/tilda-window.c @@ -161,7 +161,6 @@ tilda_window_keybinding_cb (const gchar *keystr, gpointer data) { TildaWindow *self = TILDA_WINDOW(data); TildaTerminal *tt; - g_print ("tilda_window_keybinding_cb() called! -- window %d\n", self->number); // FIXME: this doesn't handle animation! @@ -537,6 +536,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); g_object_set (G_OBJECT(self), "height", 400, "width", 1680, NULL); + g_object_set (G_OBJECT(self), "keep-above", TRUE, "stick", TRUE, NULL); + g_object_set (G_OBJECT(self), "hidden-at-start", FALSE, NULL); gtk_window_set_decorated (GTK_WINDOW(self->window), FALSE); -- 2.25.1