[Window] Add more hardcoded settings for testing
authorIra W. Snyder <devel@irasnyder.com>
Fri, 18 Jan 2008 02:02:48 +0000 (18:02 -0800)
committerIra W. Snyder <devel@irasnyder.com>
Fri, 18 Jan 2008 02:02:48 +0000 (18:02 -0800)
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

index be5067d..929a934 100644 (file)
@@ -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);