comparison console/libgnt/gntlabel.c @ 13943:25be562aaca8

[gaim-migrate @ 16480] New widget GntLine to use as a separator. A partial dialog for add-account callback. Updating the dialog as a result of selection-change in the prpl dropdown is way ickier than I had expected it to be. It 'works' now, but quite a bit quirky. I will try to smooth things up later, perhaps next week. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 10 Jul 2006 23:55:24 +0000
parents 3dbcbc5e57e1
children 841a5ffbfee4
comparison
equal deleted inserted replaced
13942:b14fdab68eac 13943:25be562aaca8
68 } 68 }
69 69
70 static void 70 static void
71 gnt_label_init(GTypeInstance *instance, gpointer class) 71 gnt_label_init(GTypeInstance *instance, gpointer class)
72 { 72 {
73 GNT_WIDGET_SET_FLAGS(GNT_WIDGET(instance), GNT_WIDGET_GROW_X | GNT_WIDGET_GROW_Y); 73 GntWidget *widget = GNT_WIDGET(instance);
74 GNT_WIDGET_SET_FLAGS(widget, GNT_WIDGET_GROW_X);
75 widget->priv.minw = 3;
76 widget->priv.minh = 1;
74 DEBUG; 77 DEBUG;
75 } 78 }
76 79
77 /****************************************************************************** 80 /******************************************************************************
78 * GntLabel API 81 * GntLabel API