From: Ira W. Snyder Date: Fri, 18 Jan 2008 02:02:48 +0000 (-0800) Subject: [Window] Add more hardcoded settings for testing X-Git-Url: https://www.irasnyder.com/gitweb/?p=tilda-gobject.git;a=commitdiff_plain;h=638a1b2266fcfc7fbbcee7ec4c1d479a00de425f [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. --- 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);