aboutsummaryrefslogtreecommitdiff
path: root/src/prefs_common_dialog.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-05-27 06:01:13 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-05-27 06:01:13 +0000
commite5ad1b40d7174f432bc7ce6c71f518dda3fca374 (patch)
treede57daef05d4fb52e5d5a7edfc4d0bb7b214a2f1 /src/prefs_common_dialog.c
parent8ab959b97542dbbe8883466211faae1eed2c6bad (diff)
added description for the color label settings.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2550 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs_common_dialog.c')
-rw-r--r--src/prefs_common_dialog.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/prefs_common_dialog.c b/src/prefs_common_dialog.c
index 9ab11b4c..3c4c32e5 100644
--- a/src/prefs_common_dialog.c
+++ b/src/prefs_common_dialog.c
@@ -1927,6 +1927,8 @@ static GtkWidget *prefs_message_create(void)
static GtkWidget *prefs_colorlabel_create(void)
{
GtkWidget *vbox;
+ GtkWidget *hbox;
+ GtkWidget *label;
GtkWidget *table;
GtkWidget *clabel;
GtkWidget *entry;
@@ -1936,6 +1938,17 @@ static GtkWidget *prefs_colorlabel_create(void)
gtk_widget_show(vbox);
gtk_container_set_border_width(GTK_CONTAINER(vbox), 8);
+ hbox = gtk_hbox_new(FALSE, 8);
+ gtk_widget_show(hbox);
+ gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, TRUE, 0);
+
+ label = gtk_label_new(_("You can specify label names for each color (Work, TODO etc.)."));
+ gtk_widget_show(label);
+ gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
+ gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT);
+ gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
+ gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
+
table = gtk_table_new(7, 2, FALSE);
gtk_widget_show(table);
gtk_container_add(GTK_CONTAINER(vbox), table);