Mercurial > pidgin
changeset 4334:fb911dfb76f4
[gaim-migrate @ 4598]
Is this totally ghey?
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Sat, 18 Jan 2003 01:58:09 +0000 |
parents | cc2f780c0505 |
children | 60b9f8fccce8 |
files | src/prefs.c |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/prefs.c Sat Jan 18 01:58:00 2003 +0000 +++ b/src/prefs.c Sat Jan 18 01:58:09 2003 +0000 @@ -346,11 +346,20 @@ GtkTreeViewColumn *col; GtkTreeSelection *sel; GtkTreePath *path = NULL; + GtkWidget *label; GtkTargetEntry te[3] = {{"text/plain", 0, 0},{"text/uri-list", 1, 0},{"STRING", 2, 0}}; ret = gtk_vbox_new(FALSE, 18); gtk_container_set_border_width (GTK_CONTAINER (ret), 12); + label = gtk_label_new(_("Select a smiley theme that you would like to use from the list below. New themes can\nbe installed by dragging and dropping them onto the theme list.")); + + gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); + gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); + + gtk_box_pack_start(GTK_BOX(ret), label, FALSE, TRUE, 0); + gtk_widget_show(label); + sw = gtk_scrolled_window_new(NULL,NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN);