From 75ef523bc564c3bb11128ef896f90a50d2daee62 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 21 Nov 2020 15:22:13 +0100 Subject: [PATCH] Updated docs and clarified a insert menu entry --- docs/source/int_interface.rst | 9 +++++++++ nw/gui/mainmenu.py | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/source/int_interface.rst b/docs/source/int_interface.rst index 599757dc..758d5ab3 100644 --- a/docs/source/int_interface.rst +++ b/docs/source/int_interface.rst @@ -422,3 +422,12 @@ combination for the inserted character or punctuation. ":kbd:`Ctrl`:kbd:`K`, :kbd:`Space`", "Insert a non-breaking space." ":kbd:`Ctrl`:kbd:`K`, :kbd:`Shift`:kbd:`Space`", "Insert a thin space." ":kbd:`Ctrl`:kbd:`K`, :kbd:`Ctrl`:kbd:`Space`", "Insert a thin non-breaking space." + ":kbd:`Ctrl`:kbd:`K`, :kbd:`G`", "Insert a @tag keyword." + ":kbd:`Ctrl`:kbd:`K`, :kbd:`V`", "Insert a @pov keyword." + ":kbd:`Ctrl`:kbd:`K`, :kbd:`C`", "Insert a @char keyword." + ":kbd:`Ctrl`:kbd:`K`, :kbd:`P`", "Insert a @plot keyword." + ":kbd:`Ctrl`:kbd:`K`, :kbd:`T`", "Insert a @time keyword." + ":kbd:`Ctrl`:kbd:`K`, :kbd:`L`", "Insert a @location keyword." + ":kbd:`Ctrl`:kbd:`K`, :kbd:`O`", "Insert a @object keyword." + ":kbd:`Ctrl`:kbd:`K`, :kbd:`E`", "Insert a @entity keyword." + ":kbd:`Ctrl`:kbd:`K`, :kbd:`X`", "Insert a @custom keyword." diff --git a/nw/gui/mainmenu.py b/nw/gui/mainmenu.py index afd9ac2e..c64debe6 100644 --- a/nw/gui/mainmenu.py +++ b/nw/gui/mainmenu.py @@ -502,8 +502,8 @@ class GuiMainMenu(QMenuBar): # Insert self.insertMenu = self.addMenu("&Insert") - # Insert > Dashes - self.mInsDashes = self.insertMenu.addMenu("Dashes") + # Insert > Dashes and Dots + self.mInsDashes = self.insertMenu.addMenu("Dashes and Dots") # Insert > Short Dash self.aInsENDash = QAction("Short Dash", self)