From 1cd6737a38723f482db73a8e4739176a0d524c57 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Mon, 17 Jan 2022 10:46:55 +0000 Subject: [PATCH] Use BControlLook to determine scroll bar size on Haiku * src/haiku_support.cc (BScrollBar_default_size): Use BControlLook instead of legacy constants. --- src/haiku_support.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/haiku_support.cc b/src/haiku_support.cc index 0f4ec2cd7c3..22a977a4a69 100644 --- a/src/haiku_support.cc +++ b/src/haiku_support.cc @@ -36,6 +36,7 @@ along with GNU Emacs. If not, see . */ #include #include #include +#include #include @@ -2019,7 +2020,9 @@ BView_scroll_bar_update (void *sb, int portion, int whole, int position) int BScrollBar_default_size (int horizontal_p) { - return horizontal_p ? B_H_SCROLL_BAR_HEIGHT : B_V_SCROLL_BAR_WIDTH; + return be_control_look->GetScrollBarWidth (horizontal_p + ? B_HORIZONTAL + : B_VERTICAL); } /* Invalidate VIEW, causing it to be drawn again. */ -- 2.39.2