aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-07-14 08:53:23 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-07-14 08:53:23 +0000
commit0a225a160c2d521b8062bfc702c33b65f520e081 (patch)
tree5581ab622932e25112c82eaa572fb631c399facc
parent8c0bfd54ae0c81112065a8b7b762ac465e065e5a (diff)
made textview_cursor_visible a hidden option.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@432 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.ja4
-rw-r--r--README2
-rw-r--r--README.ja2
-rw-r--r--src/prefs_common.c12
5 files changed, 18 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 369e959f..fdaee864 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2005-07-14
+ * src/prefs_common.c: made textview_cursor_visible a hidden option.
+
+2005-07-14
+
* src/procmime.c: procmime_decode_content(): don't uncanonicalize
files whose name is *.txt but the Content-Type is
application/octet-stream.
diff --git a/ChangeLog.ja b/ChangeLog.ja
index e9cd8a6e..9d6b08e0 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,9 @@
2005-07-14
+ * src/prefs_common.c: textview_cursor_visible を隠しオプションにした。
+
+2005-07-14
+
* src/procmime.c: procmime_decode_content(): 名前が *.txt だが
Content-Type が application/octet-stream であるようなファイルを
正規化解除しないようにした。
diff --git a/README b/README
index 12566474..0af10275 100644
--- a/README
+++ b/README
@@ -192,6 +192,8 @@ bold_unread show unread messages using bold font in
folderview_vscrollbar_policy specify the policy of vertical scroll bar
of folder view
0: always 1: automatic 2: never [default: 0]
+textview_cursor_visible show cursor in the text view
+ 0: off 1: on [default: 0]
logwindow_line_limit specify the limit of line numbers of log
window
0: unlimited n (> 0): n lines [default: 1000]
diff --git a/README.ja b/README.ja
index 0535db83..ac963959 100644
--- a/README.ja
+++ b/README.ja
@@ -204,6 +204,8 @@ bold_unread サマリビューで未読メッセージをボールド
folderview_vscrollbar_policy フォルダビューの垂直スクロールバーのポリシー
を指定
0: 常に表示 1: 自動 2: 非表示 [デフォルト: 0]
+textview_cursor_visible テキストビューにカーソルを表示
+ 0: off 1: on [デフォルト: 0]
logwindow_line_limit ログウィンドウの行数制限を指定
0: 無制限 n (> 0): n 行 [デフォルト: 1000]
diff --git a/src/prefs_common.c b/src/prefs_common.c
index 8d9f6630..ba366012 100644
--- a/src/prefs_common.c
+++ b/src/prefs_common.c
@@ -139,7 +139,6 @@ static struct Message {
GtkWidget *chkbtn_disphdrpane;
GtkWidget *chkbtn_disphdr;
GtkWidget *chkbtn_html;
- GtkWidget *chkbtn_cursor;
GtkWidget *spinbtn_linespc;
GtkObject *spinbtn_linespc_adj;
@@ -549,13 +548,14 @@ static PrefParam param[] = {
{"render_html", "TRUE", &prefs_common.render_html, P_BOOL,
&message.chkbtn_html,
prefs_set_data_from_toggle, prefs_set_toggle},
- {"textview_cursor_visible", "FALSE",
- &prefs_common.textview_cursor_visible, P_BOOL,
- &message.chkbtn_cursor, prefs_set_data_from_toggle, prefs_set_toggle},
{"line_space", "2", &prefs_common.line_space, P_INT,
&message.spinbtn_linespc,
prefs_set_data_from_spinbtn, prefs_set_spinbtn},
+ {"textview_cursor_visible", "FALSE",
+ &prefs_common.textview_cursor_visible, P_BOOL,
+ NULL, NULL, NULL},
+
{"enable_smooth_scroll", "FALSE",
&prefs_common.enable_smooth_scroll, P_BOOL,
&message.chkbtn_smoothscroll,
@@ -1766,7 +1766,6 @@ static void prefs_message_create(void)
GtkWidget *chkbtn_disphdr;
GtkWidget *button_edit_disphdr;
GtkWidget *chkbtn_html;
- GtkWidget *chkbtn_cursor;
GtkWidget *hbox_linespc;
GtkWidget *label_linespc;
GtkObject *spinbtn_linespc_adj;
@@ -1841,8 +1840,10 @@ static void prefs_message_create(void)
PACK_CHECK_BUTTON(vbox2, chkbtn_html,
_("Render HTML messages as text"));
+#if 0
PACK_CHECK_BUTTON(vbox2, chkbtn_cursor,
_("Display cursor in message view"));
+#endif
PACK_VSPACER(vbox2, vbox3, VSPACING_NARROW_2);
@@ -1930,7 +1931,6 @@ static void prefs_message_create(void)
message.chkbtn_disphdrpane = chkbtn_disphdrpane;
message.chkbtn_disphdr = chkbtn_disphdr;
message.chkbtn_html = chkbtn_html;
- message.chkbtn_cursor = chkbtn_cursor;
message.spinbtn_linespc = spinbtn_linespc;
message.chkbtn_smoothscroll = chkbtn_smoothscroll;