1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:27:45 +00:00

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

View file

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