aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2007-02-24 02:43:20 +0000
committerYAMAMOTO Mitsuharu2007-02-24 02:43:20 +0000
commitcd2e39625aad9c039347eb048fb41ad7b8ec4b2c (patch)
treea1fc834b7e204b30b3759cd6bd9f71345a6b2883 /src
parent4d5724e587b5a9f5b91a4b2976e81996e9980fe2 (diff)
downloademacs-cd2e39625aad9c039347eb048fb41ad7b8ec4b2c.tar.gz
emacs-cd2e39625aad9c039347eb048fb41ad7b8ec4b2c.zip
(struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]: New
member `min_handle'.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog11
-rw-r--r--src/macterm.h3
2 files changed, 14 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 303b53a9b50..c7f40ce8100 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12007-02-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * macterm.c [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_drag)
4 (x_set_toolkit_scroll_bar_thumb): Add bar->min_handle as margin to
5 scroll bar handle size in order to avoid `scroll backward' problem.
6 (x_scroll_bar_create, XTset_vertical_scroll_bar)
7 [USE_TOOLKIT_SCROLL_BARS]: Initialize bar->min_handle.
8
9 * macterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]: New
10 member `min_handle'.
11
12007-02-23 Kim F. Storm <storm@cua.dk> 122007-02-23 Kim F. Storm <storm@cua.dk>
2 13
3 * print.c (print): Reset print_number_index if Vprint_number_table 14 * print.c (print): Reset print_number_index if Vprint_number_table
diff --git a/src/macterm.h b/src/macterm.h
index d56287c348c..3d0b41f6efe 100644
--- a/src/macterm.h
+++ b/src/macterm.h
@@ -436,6 +436,9 @@ struct scroll_bar {
436 /* The position and size of the scroll bar handle track area in 436 /* The position and size of the scroll bar handle track area in
437 pixels, relative to the frame. */ 437 pixels, relative to the frame. */
438 Lisp_Object track_top, track_height; 438 Lisp_Object track_top, track_height;
439
440 /* Minimum length of the scroll bar handle, in pixels. */
441 Lisp_Object min_handle;
439#endif 442#endif
440}; 443};
441 444