diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2008-10-07 09:39:06 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2008-10-07 09:39:06 +0000 |
commit | bf26a8a8d9cd7df740c227d7b7995cd92fd9b268 (patch) | |
tree | 2e09dca83df2a0d77c38ff2660f0bdf0f387348d | |
parent | cb9b838a061126aad536a0152894ca1ef83645f5 (diff) |
disable '/Message/Receive/Remote mailbox...' when mail incorporation is active.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2052 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.ja | 5 | ||||
-rw-r--r-- | src/mainwindow.c | 2 |
3 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-10-07 + + * src/mainwindow.c: disable '/Message/Receive/Remote mailbox...' + when mail incorporation is active. + 2008-10-03 * manual/ja/sylpheed.sgml: updated Japanese manual. diff --git a/ChangeLog.ja b/ChangeLog.ja index ebdcc609..55f3dd10 100644 --- a/ChangeLog.ja +++ b/ChangeLog.ja @@ -1,3 +1,8 @@ +2008-10-07 + + * src/mainwindow.c: メールの受信の動作中は「/メッセージ/受信/ + リモートメールボックス...」を無効にするようにした。 + 2008-10-03 * manual/ja/sylpheed.sgml: 日本語マニュアルを更新。 diff --git a/src/mainwindow.c b/src/mainwindow.c index 3cc44601..8a7183aa 100644 --- a/src/mainwindow.c +++ b/src/mainwindow.c @@ -2099,6 +2099,8 @@ void main_window_set_menu_sensitive(MainWindow *mainwin) , M_HAVE_ACCOUNT|M_UNLOCKED}, {"/Message/Receive/Stop receiving" , M_INC_ACTIVE}, + {"/Message/Receive/Remote mailbox..." + , M_HAVE_ACCOUNT|M_UNLOCKED}, {"/Message/Send queued messages" , M_HAVE_ACCOUNT|M_HAVE_QUEUED_MSG}, {"/Message/Compose new message" , M_HAVE_ACCOUNT}, |