mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-05-17 13:20:25 -04:00
Initial work on micron markup language. Work on guide section.
This commit is contained in:
parent
84e616a3ec
commit
72f623293e
6 changed files with 478 additions and 34 deletions
|
@ -252,6 +252,11 @@ class NomadNetworkApp:
|
|||
else:
|
||||
self.config["textui"]["mouse_enabled"] = self.config["textui"].as_bool("mouse_enabled")
|
||||
|
||||
if not "hide_guide" in self.config["textui"]:
|
||||
self.config["textui"]["hide_guide"] = False
|
||||
else:
|
||||
self.config["textui"]["hide_guide"] = self.config["textui"].as_bool("hide_guide")
|
||||
|
||||
if not "animation_interval" in self.config["textui"]:
|
||||
self.config["textui"]["animation_interval"] = 1
|
||||
else:
|
||||
|
@ -373,6 +378,11 @@ mouse_enabled = True
|
|||
# alias will be used.
|
||||
editor = editor
|
||||
|
||||
# If you don't want the Guide section to
|
||||
# show up in the menu, you can disable it.
|
||||
|
||||
hide_guide = no
|
||||
|
||||
[node]
|
||||
|
||||
enable_node = no
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue