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
a4b697f4
Commit
a4b697f4
authored
Apr 09, 2018
by
Gabor Kiss-Vamosi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
in style animation add opacity handling to image, text and line
parent
b047c131
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
lv_style.c
lv_core/lv_style.c
+3
-0
No files found.
lv_core/lv_style.c
View file @
a4b697f4
...
...
@@ -272,8 +272,11 @@ static void style_animator(lv_style_anim_dsc_t * dsc, int32_t val)
STYLE_ATTR_ANIM
(
body
.
padding
.
inner
,
val
);
STYLE_ATTR_ANIM
(
text
.
line_space
,
val
);
STYLE_ATTR_ANIM
(
text
.
letter_space
,
val
);
STYLE_ATTR_ANIM
(
text
.
opa
,
val
);
STYLE_ATTR_ANIM
(
line
.
width
,
val
);
STYLE_ATTR_ANIM
(
line
.
opa
,
val
);
STYLE_ATTR_ANIM
(
image
.
intense
,
val
);
STYLE_ATTR_ANIM
(
image
.
opa
,
val
);
lv_opa_t
opa
=
val
==
LV_STYLE_ANIM_RES
?
LV_OPA_COVER
:
val
;
...
...
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