BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lvgl
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
lvgl
Commits
80b18129
Commit
80b18129
authored
Mar 04, 2018
by
Gabor Kiss-Vamosi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix lv_rfill screen sized area size
parent
fb59508a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
3 deletions
+1
-3
lv_draw_rbasic.c
lv_draw/lv_draw_rbasic.c
+1
-1
lv_list.h
lv_objx/lv_list.h
+0
-1
lv_theme_night.c
lv_themes/lv_theme_night.c
+0
-1
No files found.
lv_draw/lv_draw_rbasic.c
View file @
80b18129
...
...
@@ -79,7 +79,7 @@ void lv_rfill(const lv_area_t * cords_p, const lv_area_t * mask_p,
union_ok
=
lv_area_union
(
&
masked_area
,
cords_p
,
mask_p
);
}
else
{
lv_area_t
scr_area
;
lv_area_set
(
&
scr_area
,
0
,
0
,
LV_HOR_RES
-
1
,
LV_
HO
R_RES
-
1
);
lv_area_set
(
&
scr_area
,
0
,
0
,
LV_HOR_RES
-
1
,
LV_
VE
R_RES
-
1
);
union_ok
=
lv_area_union
(
&
masked_area
,
cords_p
,
&
scr_area
);
}
...
...
lv_objx/lv_list.h
View file @
80b18129
...
...
@@ -111,7 +111,6 @@ static inline void lv_list_set_sb_mode(lv_obj_t * list, lv_sb_mode_t mode)
lv_page_set_sb_mode
(
list
,
mode
);
}
/**
* Set a style of a list
* @param list pointer to a list object
...
...
lv_themes/lv_theme_night.c
View file @
80b18129
...
...
@@ -421,7 +421,6 @@ static void page_init(void)
page_scrl
.
body
.
border
.
width
=
1
;
page_scrl
.
body
.
radius
=
LV_DPI
/
20
;
theme
.
page
.
bg
=
&
panel
;
theme
.
page
.
scrl
=
&
page_scrl
;
theme
.
page
.
sb
=
&
sb
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment