aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--src/about.c3
3 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9bf62509..8fbcd1d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-06-22
+
+ * src/about.c: place cursor at the start (fixed unintended scroll
+ on win32).
+
2007-06-15
* src/manage_window.c: manage_window_set_transient(): force popup
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 4c4fcb4f..70329594 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,8 @@
+2007-06-22
+
+ * src/about.c: カーソルを開始位置に置くようにした(win32 での意図し
+ ないスクロールを修正)。
+
2007-06-15
* src/manage_window.c: manage_window_set_transient(): 親ウィンドウを
diff --git a/src/about.c b/src/about.c
index 9d9c2366..70446578 100644
--- a/src/about.c
+++ b/src/about.c
@@ -244,6 +244,9 @@ static void about_create(void)
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, "
"MA 02111-1307, USA."), -1);
+ gtk_text_buffer_get_start_iter(buffer, &iter);
+ gtk_text_buffer_place_cursor(buffer, &iter);
+
gtkut_stock_button_set_create(&confirm_area, &ok_button, GTK_STOCK_OK,
NULL, NULL, NULL, NULL);
gtk_box_pack_end(GTK_BOX(vbox), confirm_area, FALSE, FALSE, 0);