mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 22:47:44 +00:00
LibGUI: Tweak scrollbar arrows
Remove the base, leaving only the pointy triangle part. :^)
This commit is contained in:
parent
b8416df173
commit
34f186e1e6
1 changed files with 20 additions and 20 deletions
|
@ -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 = {
|
||||
" "
|
||||
" # "
|
||||
" ## "
|
||||
" ###### "
|
||||
" ####### "
|
||||
" ###### "
|
||||
" ## "
|
||||
" # "
|
||||
" # "
|
||||
" ## "
|
||||
" ### "
|
||||
" #### "
|
||||
" ### "
|
||||
" ## "
|
||||
" # "
|
||||
" "
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue