express: Don't update window on every config change

Changing a single letter in the Network options entry boxes would
always cause the window to update ... this is silly. Defer updating
window until config is done.
This commit is contained in:
Christopher Michael 2021-01-27 10:23:47 -05:00
parent b55974bfb6
commit 6e3461f5e0
1 changed files with 1 additions and 5 deletions

View File

@ -301,9 +301,5 @@ _config_load(void)
void
_config_save(void)
{
if (_config_domain_save(PACKAGE_NAME, _ex_cfg_edd, _ex_cfg))
{
/* update window, channels, etc */
_window_update();
}
_config_domain_save(PACKAGE_NAME, _ex_cfg_edd, _ex_cfg);
}