From e09cdf7bcae0ae60991b897cea77c9f9cb6c30d3 Mon Sep 17 00:00:00 2001 From: Karl Kleinpaste Date: Tue, 22 Aug 2017 09:38:43 -0400 Subject: [PATCH] make glosses option default on. --- ChangeLog | 1 + help/C/interface.xml | 5 +++++ src/main/global_ops.cc | 6 ++++-- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 79f04bc3a..97a4e03bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2017-08-21 karl * add #791 full-screen of current bible on F11. + * make Japanese glosses default on. 2017-08-20 karl diff --git a/help/C/interface.xml b/help/C/interface.xml index ae7821cdf..cd03f399a 100644 --- a/help/C/interface.xml +++ b/help/C/interface.xml @@ -814,6 +814,11 @@ F4: opens the Module Manager. + + + F11: opens the current Bible as a separate window. + + Alt-A opens an annotation dialog on the current verse. diff --git a/src/main/global_ops.cc b/src/main/global_ops.cc index 3049cd284..0e4d7790c 100644 --- a/src/main/global_ops.cc +++ b/src/main/global_ops.cc @@ -208,8 +208,6 @@ GLOBAL_OPS *main_new_globals(const gchar *mod_name) gui_of2tf(module_options[mod_name]["Transliterated Forms"].c_str()); ops->enumerated = gui_of2tf(module_options[mod_name]["Enumerations"].c_str()); - ops->glosses = - gui_of2tf(module_options[mod_name]["Glosses"].c_str()); ops->morphseg = gui_of2tf(module_options[mod_name]["Morpheme Segmentation"].c_str()); @@ -245,6 +243,10 @@ GLOBAL_OPS *main_new_globals(const gchar *mod_name) ops->hebrewcant = (module_options[mod_name]["Hebrew Cantillation"] != "Off"); + // more special case default on: japanese glosses. + ops->glosses = + (module_options[mod_name]["Glosses"] != "Off"); + // we prefer and assume paragraph layout. // we take user preference, and alter our default for // those modules showing proper configuration for it.