From 675bfb934bcd5a00999a566bb4a080184912c0e4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 30 Dec 2020 01:55:25 +0100 Subject: [PATCH] LibGUI: Unbreak GUI::ScrollBar default size Oops, got my width/height mixed up here. :^) --- Libraries/LibGUI/ScrollBar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/LibGUI/ScrollBar.cpp b/Libraries/LibGUI/ScrollBar.cpp index 55447d19029..ab7198e1bce 100644 --- a/Libraries/LibGUI/ScrollBar.cpp +++ b/Libraries/LibGUI/ScrollBar.cpp @@ -100,9 +100,9 @@ ScrollBar::ScrollBar(Orientation orientation) s_right_arrow_bitmap = &Gfx::CharacterBitmap::create_from_ascii(s_right_arrow_bitmap_data, 9, 9).leak_ref(); if (m_orientation == Orientation::Vertical) { - set_fixed_height(16); - } else { set_fixed_width(16); + } else { + set_fixed_height(16); } m_automatic_scrolling_timer->set_interval(100);