>From f16f211a0810ff0f09a53dd4036c1c9df5841c85 Mon Sep 17 00:00:00 2001 From: Timo Savola Date: Tue, 23 Jan 2007 11:59:04 +0200 Subject: [PATCH] gtk-scrollbar-position Aligns GTK+ scrollbars to the frame border. --- src/xterm.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xterm.c b/src/xterm.c index db6a353..d53455e 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -5010,12 +5010,12 @@ XTset_vertical_scroll_bar (w, portion, whole, position) if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)) sb_left = (left + (WINDOW_RIGHTMOST_P (w) - ? width - sb_width - (width - sb_width) / 2 + ? width - sb_width : 0)); else sb_left = (left + (WINDOW_LEFTMOST_P (w) - ? (width - sb_width) / 2 + ? 0 : width - sb_width)); #else if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)) -- 1.5.2