comparison console/libgnt/gnttextview.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 917a71dd02eb
children 841a5ffbfee4
comparison
equal deleted inserted replaced
13942:b14fdab68eac 13943:25be562aaca8
111 } 111 }
112 112
113 static void 113 static void
114 gnt_text_view_init(GTypeInstance *instance, gpointer class) 114 gnt_text_view_init(GTypeInstance *instance, gpointer class)
115 { 115 {
116 GntWidget *widget = GNT_WIDGET(instance);
117
116 /* XXX: For now, resizing the width is not permitted. This is because 118 /* XXX: For now, resizing the width is not permitted. This is because
117 * of the way I am handling wrapped lines. */ 119 * of the way I am handling wrapped lines. */
118 GNT_WIDGET_SET_FLAGS(GNT_WIDGET(instance), GNT_WIDGET_GROW_Y); 120 GNT_WIDGET_SET_FLAGS(GNT_WIDGET(instance), GNT_WIDGET_GROW_Y);
121
122 widget->priv.minw = 5;
123 widget->priv.minh = 1;
119 DEBUG; 124 DEBUG;
120 } 125 }
121 126
122 /****************************************************************************** 127 /******************************************************************************
123 * GntTextView API 128 * GntTextView API