diff options
Diffstat (limited to 'src/setup.c')
| -rw-r--r-- | src/setup.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/setup.c b/src/setup.c index 4755ad7..f328196 100644 --- a/src/setup.c +++ b/src/setup.c @@ -138,6 +138,9 @@ parse_setup_xml (const char *filename, TGallerySetup *setup) s = xml_file_get_node_attribute (xml, "/gallery_setup/navigation/show_go_up", "value"); setup->show_go_up = s ? strcasecmp (s, "yes") == 0 : TRUE; /* default to TRUE */ if (s) g_free (s); + s = xml_file_get_node_attribute (xml, "/gallery_setup/navigation/show_exif_table", "value"); + setup->show_exif_table = s ? strcasecmp (s, "yes") == 0 : TRUE; /* default to TRUE */ + if (s) g_free (s); setup->nofullsize = xml_file_get_node_present (xml, "/gallery_setup/images/nofullsize"); |
