--- rxvt-unicode/src/scrollbar.C 2007/05/01 21:30:01 1.39 +++ rxvt-unicode/src/scrollbar.C 2007/12/31 01:05:51 1.44 @@ -72,9 +72,9 @@ #define R_SCROLLBEG_NEXT 0 #define R_SCROLLEND_NEXT szHint.height - (SB_BUTTON_TOTAL_HEIGHT + \ SB_PADDING) -#define R_SCROLLBEG_RXVT (scrollBar.width + 1) + sb_shadow +#define R_SCROLLBEG_RXVT (scrollBar.width + 1) + scrollBar.shadow #define R_SCROLLEND_RXVT szHint.height - R_SCROLLBEG_RXVT - \ - (2 * sb_shadow) + (2 * scrollBar.shadow) #if defined(PLAIN_SCROLLBAR) if (scrollBar.style == R_SB_PLAIN) @@ -147,6 +147,7 @@ int ret = 0; #ifdef HAVE_SCROLLBARS int top, bot, len, adj; + int scrollbar_len = 0; if (!scrollBar.state) return 0; @@ -163,17 +164,17 @@ scrollbar_minheight () + adj; scrollBar.bot = (scrollBar.top + scrollbar_len); /* no change */ - if (scrollBar.top == last_top - && scrollBar.bot == last_bot - && (scrollBar.state == last_state || !scrollbar_isUpDn ())) + if (scrollBar.top == scrollBar.last_top + && scrollBar.bot == scrollBar.last_bot + && (scrollBar.state == scrollBar.last_state || !scrollbar_isUpDn ())) return 0; } - ret = (this->*scrollBar.update) (update, last_top, last_bot, scrollbar_len); + ret = (this->*scrollBar.update) (update, scrollBar.last_top, scrollBar.last_bot, scrollbar_len); - last_top = scrollBar.top; - last_bot = scrollBar.bot; - last_state = scrollBar.state; + scrollBar.last_top = scrollBar.top; + scrollBar.last_bot = scrollBar.bot; + scrollBar.last_state = scrollBar.state; #endif return ret; @@ -231,20 +232,21 @@ # ifdef RXVT_SCROLLBAR if (! option (Opt_scrollBar_floating) && style == R_SB_RXVT) - sb_shadow = SHADOW_WIDTH; + scrollBar.shadow = SHADOW_WIDTH; # endif scrollBar.style = style; scrollBar.width = width; - /* scrollbar_align = R_SB_ALIGN_CENTRE; */ + /* scrollBar.align = R_SB_ALIGN_CENTRE; */ if (scrollalign) { if (strncasecmp (scrollalign, "top", 3) == 0) - scrollbar_align = R_SB_ALIGN_TOP; + scrollBar.align = R_SB_ALIGN_TOP; else if (strncasecmp (scrollalign, "bottom", 6) == 0) - scrollbar_align = R_SB_ALIGN_BOTTOM; + scrollBar.align = R_SB_ALIGN_BOTTOM; } + scrollBar.last_bot = scrollBar.last_state = -1; #endif }