diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2010-07-07 07:37:33 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2010-07-07 07:37:33 +0000 |
commit | fe4c422a379068a38be8f3f3f8d9dc06a0cecd6a (patch) | |
tree | cb80a9874a9cc033c0309210aa91b48fca6f437c | |
parent | 23e83b928ce25b3aca609fb41e65a7c231c97f18 (diff) |
changed the upper limit of auto check interval to 1000 minutes.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2603 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/prefs_common_dialog.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2010-07-07 + + * src/prefs_common_dialog.c: changed the upper limit of auto check + interval to 1000 minutes. + 2010-07-06 * src/plugin.[ch] diff --git a/src/prefs_common_dialog.c b/src/prefs_common_dialog.c index b653d986..539cf505 100644 --- a/src/prefs_common_dialog.c +++ b/src/prefs_common_dialog.c @@ -823,7 +823,7 @@ static void prefs_receive_create(void) gtk_widget_show (label_autochk1); gtk_box_pack_start (GTK_BOX (hbox_autochk), label_autochk1, FALSE, FALSE, 0); - spinbtn_autochk_adj = gtk_adjustment_new (5, 1, 100, 1, 10, 0); + spinbtn_autochk_adj = gtk_adjustment_new (5, 1, 1000, 1, 10, 0); spinbtn_autochk = gtk_spin_button_new (GTK_ADJUSTMENT (spinbtn_autochk_adj), 1, 0); gtk_widget_show (spinbtn_autochk); |