value "inwin_dialogs_enable" uchar: 1;
value "icon_size" int: 32;
value "longpress_timeout" double: 1.0;
+ value "effect_enable" uchar: 1;
}
value "inwin_dialogs_enable" uchar: 1;
value "icon_size" int: 32;
value "longpress_timeout" double: 1.0;
+ value "effect_enable" uchar: 1;
}
value "inwin_dialogs_enable" uchar: 0;
value "icon_size" int: 32;
value "longpress_timeout" double: 1.0;
+ value "effect_enable" uchar: 1;
}
ELM_CONFIG_VAL(D, T, inwin_dialogs_enable, T_UCHAR);
ELM_CONFIG_VAL(D, T, icon_size, T_INT);
ELM_CONFIG_VAL(D, T, longpress_timeout, T_DOUBLE);
+ ELM_CONFIG_VAL(D, T, effect_enable, T_UCHAR);
#undef T
#undef D
#undef T_INT
_elm_config->inwin_dialogs_enable = EINA_FALSE;
_elm_config->icon_size = 32;
_elm_config->longpress_timeout = 1.0;
+ _elm_config->effect_enable = EINA_TRUE;
}
static const char *
if (s) _elm_config->longpress_timeout = atof(s);
if (_elm_config->longpress_timeout < 0.0)
_elm_config->longpress_timeout = 0.0;
+
+ s = getenv("ELM_EFFECT_ENABLE");
+ if (s) _elm_config->effect_enable = !!atoi(s);
}
void