aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-02-01 02:34:42 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-02-01 02:34:42 +0000
commitcbf7cb3b735e09d6ce449cf7a4c80ea4a6e9e616 (patch)
treedb87406838a111c85201aa5013a5d7f72102e262
parentd81b3d740eddb35ca5fd84030980804b6884ef04 (diff)
don't lock some items in Configuration menu.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1519 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--src/mainwindow.c7
3 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c33c2c9a..b0cbfa9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2007-02-01
+ * src/mainwindow.c: main_window_set_menu_sensitive(): don't lock some
+ items in Configuration menu.
+
+2007-02-01
+
* src/mainwindow.c: main_window_window_state_cb(): fixed a bug that
the window was kept being skipped from window list after it became
visible with window shading or switching workspaces.
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 0c3c5e31..7a4b72ba 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,10 @@
2007-02-01
+ * src/mainwindow.c: main_window_set_menu_sensitive(): 設定メニュー内
+ の項目の一部をロックしないようにした。
+
+2007-02-01
+
* src/mainwindow.c: main_window_window_state_cb(): ウィンドウシェード
やワークスペースの切り替えなどでウィンドウが表示された後でも
ウィンドウリストからスキップされていたバグを修正。
diff --git a/src/mainwindow.c b/src/mainwindow.c
index 21e65e98..f9fff54d 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -2054,7 +2054,12 @@ void main_window_set_menu_sensitive(MainWindow *mainwin)
{"/Tools/Execute marked process" , M_MSG_EXIST|M_EXEC},
{"/Tools/Delete duplicated messages" , M_MSG_EXIST|M_ALLOW_DELETE},
- {"/Configuration", M_UNLOCKED},
+ {"/Configuration/Common preferences...", M_UNLOCKED},
+ {"/Configuration/Filter setting...", M_UNLOCKED},
+ {"/Configuration/Preferences for current account...", M_UNLOCKED},
+ {"/Configuration/Create new account...", M_UNLOCKED},
+ {"/Configuration/Edit accounts...", M_UNLOCKED},
+ {"/Configuration/Change current account", M_UNLOCKED},
{NULL, 0}
};