]> git.eshelyaron.com Git - emacs.git/commitdiff
Use BControlLook to determine scroll bar size on Haiku
authorPo Lu <luangruo@yahoo.com>
Mon, 17 Jan 2022 10:46:55 +0000 (10:46 +0000)
committerPo Lu <luangruo@yahoo.com>
Mon, 17 Jan 2022 10:46:55 +0000 (10:46 +0000)
* src/haiku_support.cc (BScrollBar_default_size): Use
BControlLook instead of legacy constants.

src/haiku_support.cc

index 0f4ec2cd7c3d9fd21bfbe02694ae7ead8607f02c..22a977a4a69de8826cacc32552114fb7961647bc 100644 (file)
@@ -36,6 +36,7 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 #include <interface/MenuBar.h>
 #include <interface/Alert.h>
 #include <interface/Button.h>
+#include <interface/ControlLook.h>
 
 #include <locale/UnicodeChar.h>
 
@@ -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.  */