elementary: packing data properly.

This commit is contained in:
Hermet Park 2018-05-30 13:37:35 +09:00
parent fb4eebde95
commit 6e74ab5ac6
2 changed files with 8 additions and 8 deletions

View File

@ -36,9 +36,9 @@ struct _Group
struct _Efl_Ui_Radio_Data
{
int value;
Eina_Bool state;
Group *group;
Eina_Bool state : 1;
};
/**

View File

@ -58,12 +58,6 @@ struct _Elm_Genlist_Data
Ecore_Job *calc_job;
int walking;
int minw, minh;
Eina_Bool scr_minw : 1; /* a flag for determining
* minimum width to limit
* as their content size */
Eina_Bool scr_minh : 1; /* a flag for determining
* minimum height to limit
* as their content size */
unsigned int item_count;
Evas_Coord pan_x, pan_y;
Elm_Object_Select_Mode select_mode;
@ -153,6 +147,12 @@ struct _Elm_Genlist_Data
Eo *provider;
Elm_Gen_Item *focus_on_realization;
Eina_Bool scr_minw : 1; /* a flag for determining
* minimum width to limit
* as their content size */
Eina_Bool scr_minh : 1; /* a flag for determining
* minimum height to limit
* as their content size */
Eina_Bool filter;
Eina_Bool focus_on_selection_enabled : 1;
Eina_Bool tree_effect_enabled : 1;