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
ad3c0ebb
Commit
ad3c0ebb
authored
Dec 11, 2017
by
Gabor Kiss-Vamosi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor updates
parent
4fce2f39
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
lv_conf_templ.h
lv_conf_templ.h
+1
-1
lv_ddlist.c
lv_objx/lv_ddlist.c
+4
-4
lv_tabview.c
lv_objx/lv_tabview.c
+1
-1
No files found.
lv_conf_templ.h
View file @
ad3c0ebb
...
...
@@ -252,7 +252,7 @@
/*Drop down list (dependencies: lv_page, lv_label)*/
#define USE_LV_DDLIST 1
#if USE_LV_DDLIST != 0
#define LV_DDLIST_
DEF_
ANIM_TIME 200 /*Open and close default animation time [ms] (0: no animation)*/
#define LV_DDLIST_ANIM_TIME 200 /*Open and close default animation time [ms] (0: no animation)*/
#endif
/*Drop down list (dependencies: lv_ddlist)*/
...
...
lv_objx/lv_ddlist.c
View file @
ad3c0ebb
...
...
@@ -24,11 +24,11 @@
#if USE_LV_ANIMATION
# ifndef LV_DDLIST_DEF_ANIM_TIME
# define LV_DDLIST_
DEF_
ANIM_TIME 200
/*ms*/
# define LV_DDLIST_ANIM_TIME 200
/*ms*/
# endif
#else
# undef LV_DDLIST_
DEF_
ANIM_TIME
# define LV_DDLIST_
DEF_
ANIM_TIME 0
/*No animation*/
# undef LV_DDLIST_ANIM_TIME
# define LV_DDLIST_ANIM_TIME 0
/*No animation*/
#endif
/**********************
...
...
@@ -85,7 +85,7 @@ lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy)
ext
->
fix_height
=
0
;
ext
->
sel_opt_id
=
0
;
ext
->
option_cnt
=
0
;
ext
->
anim_time
=
LV_DDLIST_
DEF_
ANIM_TIME
;
ext
->
anim_time
=
LV_DDLIST_ANIM_TIME
;
ext
->
sel_style
=
&
lv_style_plain_color
;
/*The signal and design functions are not copied so set them here*/
...
...
lv_objx/lv_tabview.c
View file @
ad3c0ebb
...
...
@@ -19,7 +19,7 @@
*********************/
#if USE_LV_ANIMATION
# ifndef LV_TABVIEW_ANIM_TIME
# define LV_TABVIEW_ANIM_TIME
1
00
/*Animation time of focusing to the a list element [ms] (0: no animation) */
# define LV_TABVIEW_ANIM_TIME
3
00
/*Animation time of focusing to the a list element [ms] (0: no animation) */
# endif
#else
# undef LV_TABVIEW_ANIM_TIME
...
...
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