Ephoto: Install images to the correct location.

This commit is contained in:
Stephen 'Okra' Houston 2017-09-14 11:50:38 -05:00
parent c50e7b2bc1
commit 223076607e
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
install_data('ephoto.png',
'grid.png',
'single.png',
install_dir: join_paths(dir_data, 'icons'))
install_dir: join_paths(dir_data, 'ephoto/images'))

View File

@ -650,6 +650,9 @@ _ephoto_on_config_save(void *data)
snprintf(buf, sizeof(buf), "%s/ephoto/ephoto.cfg", efreet_config_home_get());
snprintf(buf2, sizeof(buf2), "%s.tmp", buf);
if (ephoto->config->window_width < 15) ephoto->config->window_width = 15;
if (ephoto->config->window_height < 15) ephoto->config->window_height = 15;
ef = eet_open(buf2, EET_FILE_MODE_WRITE);
if (!ef)
goto save_end;