Fix shelf autohide config

This commit is contained in:
Iván Briano 2013-10-02 23:19:59 -03:00
parent 1ac50f65b5
commit d739c009d3
1 changed files with 2 additions and 2 deletions

View File

@ -135,8 +135,8 @@ _basic_check_changed(E_Config_Dialog *cfd __UNUSED__, E_Config_Dialog_Data *cfda
CHECK(autohide_show_action);
CHECK(desk_show_mode);
CHECK(desk_list);
if (fabs(cfdata->hide_timeout - cfdata->escfg->hide_timeout > 0.19)) return 1;
if (fabs(cfdata->hide_timeout - cfdata->escfg->hide_timeout > 0.04)) return 1;
if (fabs(cfdata->hide_timeout - cfdata->escfg->hide_timeout) > 0.19) return 1;
if (fabs(cfdata->hide_duration - cfdata->escfg->hide_duration) > 0.04) return 1;
return 0;
}