Skip to content

Commit

Permalink
make glosses option default on.
Browse files Browse the repository at this point in the history
  • Loading branch information
karlkleinpaste committed Aug 22, 2017
1 parent b730255 commit e09cdf7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions ChangeLog
@@ -1,6 +1,7 @@
2017-08-21 karl <charcoal@users.sf.net>

* add #791 full-screen of current bible on F11.
* make Japanese glosses default on.

2017-08-20 karl <charcoal@users.sf.net>

Expand Down
5 changes: 5 additions & 0 deletions help/C/interface.xml
Expand Up @@ -814,6 +814,11 @@
<guibutton>F4</guibutton>: opens the <guibutton>Module Manager</guibutton>.
</para>
</listitem>
<listitem>
<para>
<guibutton>F11</guibutton>: opens the current Bible as a separate window.
</para>
</listitem>
<listitem>
<para>
<guibutton>Alt-A</guibutton> opens an annotation dialog on the current verse.
Expand Down
6 changes: 4 additions & 2 deletions src/main/global_ops.cc
Expand Up @@ -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());

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit e09cdf7

Please sign in to comment.