Add poll_interval to e_randr_cfg.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 84225
This commit is contained in:
Christopher Michael 2013-02-19 11:01:05 +00:00 committed by Christopher Michael
parent 985ff5af28
commit 3ff49b211e
1 changed files with 5 additions and 1 deletions

View File

@ -151,6 +151,7 @@ _e_randr_config_load(void)
E_CONFIG_VAL(D, T, screen.height, INT);
E_CONFIG_LIST(D, T, crtcs, _e_randr_crtc_edd);
E_CONFIG_VAL(D, T, restore, UCHAR);
E_CONFIG_VAL(D, T, poll_interval, INT);
/* try to load the randr config */
if ((e_randr_cfg = e_config_domain_load("e_randr", _e_randr_edd)))
@ -226,6 +227,9 @@ _e_randr_config_new(void)
/* by default, restore config */
e_randr_cfg->restore = EINA_TRUE;
/* by default, use 4 sec poll interval */
e_randr_cfg->poll_interval = 32;
/* grab the root window once */
root = ecore_x_window_root_first_get();
@ -335,7 +339,7 @@ _e_randr_config_new(void)
}
/* set limits */
/* E_CONFIG_LIMIT(); */
E_CONFIG_LIMIT(e_randr_cfg->poll_interval, 1, 1024);
/* save the new config */
e_randr_config_save();