aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-02-01 09:07:40 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-02-01 09:07:40 +0000
commitabdc34e3204fb13fd438764ae47d87df4971d9cc (patch)
tree37fcd25fd68a0a4803c4f6ea10479aa97357041a
parentd306cc4d757e56fa4874d10038de5dbb9d47eae5 (diff)
don't disable send button on locked.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@955 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--src/mainwindow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c
index 62552353..f5dd192f 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -1839,7 +1839,7 @@ void main_window_set_toolbar_sensitive(MainWindow *mainwin)
SET_WIDGET_COND(mainwin->get_btn, M_HAVE_ACCOUNT|M_UNLOCKED);
SET_WIDGET_COND(mainwin->getall_btn, M_HAVE_ACCOUNT|M_UNLOCKED);
- SET_WIDGET_COND(mainwin->send_btn, M_HAVE_ACCOUNT|M_UNLOCKED);
+ SET_WIDGET_COND(mainwin->send_btn, M_HAVE_ACCOUNT);
SET_WIDGET_COND(mainwin->compose_btn, M_HAVE_ACCOUNT);
SET_WIDGET_COND(mainwin->reply_btn,
M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST);
@@ -1935,7 +1935,7 @@ void main_window_set_menu_sensitive(MainWindow *mainwin)
, M_HAVE_ACCOUNT|M_UNLOCKED},
{"/Message/Receive/Cancel receiving"
, M_INC_ACTIVE},
- {"/Message/Send queued messages" , M_HAVE_ACCOUNT|M_UNLOCKED},
+ {"/Message/Send queued messages" , M_HAVE_ACCOUNT},
{"/Message/Compose new message" , M_HAVE_ACCOUNT},
{"/Message/Reply" , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},