LibGUI: Tweak scrollbar arrows

Remove the base, leaving only the pointy triangle part. :^)
This commit is contained in:
Andreas Kling 2021-08-31 00:35:57 +02:00
parent b8416df173
commit 34f186e1e6
Notes: sideshowbarker 2024-07-18 05:03:07 +09:00

View file

@ -16,50 +16,50 @@ REGISTER_WIDGET(GUI, Scrollbar)
namespace GUI {
static const char* s_up_arrow_bitmap_data = {
" "
" "
" "
" # "
" ### "
" ##### "
" ####### "
" ### "
" ### "
" ### "
" "
" "
};
static const char* s_down_arrow_bitmap_data = {
" "
" ### "
" ### "
" ### "
" "
" "
" ####### "
" ##### "
" ### "
" # "
" "
" "
};
static const char* s_left_arrow_bitmap_data = {
" "
" # "
" ## "
" ###### "
" ####### "
" ###### "
" ## "
" # "
" # "
" ## "
" ### "
" #### "
" ### "
" ## "
" # "
" "
};
static const char* s_right_arrow_bitmap_data = {
" "
" # "
" ## "
" ###### "
" ####### "
" ###### "
" ## "
" # "
" # "
" ## "
" ### "
" #### "
" ### "
" ## "
" # "
" "
};