Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions gramps/gen/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ def emit(key):
register("interface.ignore-gexiv2", False)
register("interface.ignore-pil", False)
register("interface.ignore-osmgpsmap", False)
register("interface.keybinding-theme", "Default")
register("interface.main-window-height", 500)
register("interface.main-window-horiz-position", 15)
register("interface.main-window-vert-position", 10)
Expand Down
7 changes: 7 additions & 0 deletions gramps/gen/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,13 @@
MERGE_GLADE = os.path.join(GLADE_DIR, "mergedata.glade")
RULE_GLADE = os.path.join(GLADE_DIR, "rule.glade")

# Bundled keyboard shortcut themes (e.g. "Default", an editable snapshot
# of the shipped defaults -- "Reset All to Factory Defaults" in the
# shortcuts editor is the authoritative, platform-correct reset, since it
# reads live defaults rather than a static file); user-created themes live
# under VERSION_DIR/keybinding_themes instead.
KEYBINDING_THEMES_DIR = os.path.join(ROOT_DIR, "gui", "keybinding_themes")


PLUGINS_DIR = os.path.join(ROOT_DIR, "plugins")

Expand Down
Loading
Loading