Remove the alternative double apostrophe again
This commit is contained in:
@@ -614,8 +614,6 @@ class GuiDocEditor(QTextEdit):
|
||||
theText = nwUnicode.U_HELLIP
|
||||
elif theInsert == nwDocInsert.MODAPOS_S:
|
||||
theText = nwUnicode.U_MAPOSS
|
||||
elif theInsert == nwDocInsert.MODAPOS_D:
|
||||
theText = nwUnicode.U_MAPOSD
|
||||
elif theInsert == nwDocInsert.QUOTE_LS:
|
||||
theText = self.typSQOpen
|
||||
elif theInsert == nwDocInsert.QUOTE_RS:
|
||||
|
||||
+2
-9
@@ -554,20 +554,13 @@ class GuiMainMenu(QMenuBar):
|
||||
# Insert > Separator
|
||||
self.insertMenu.addSeparator()
|
||||
|
||||
# Insert > Alt. Single Apostrophe
|
||||
self.aInsMSApos = QAction("Alt. Single Apostrophe", self)
|
||||
# Insert > Alternative Apostrophe
|
||||
self.aInsMSApos = QAction("Alternative Apostrophe", self)
|
||||
self.aInsMSApos.setStatusTip("Insert unicode modifier letter single apostrophe")
|
||||
self.aInsMSApos.setShortcut("Ctrl+K, '")
|
||||
self.aInsMSApos.triggered.connect(lambda: self._docInsert(nwDocInsert.MODAPOS_S))
|
||||
self.insertMenu.addAction(self.aInsMSApos)
|
||||
|
||||
# Insert > Alt. Double Apostrophe
|
||||
self.aInsMDApos = QAction("Alt. Double Apostrophe", self)
|
||||
self.aInsMDApos.setStatusTip("Insert unicode modifier letter double apostrophe")
|
||||
self.aInsMDApos.setShortcut("Ctrl+K, \"")
|
||||
self.aInsMDApos.triggered.connect(lambda: self._docInsert(nwDocInsert.MODAPOS_D))
|
||||
self.insertMenu.addAction(self.aInsMDApos)
|
||||
|
||||
# Insert > Separator
|
||||
self.insertMenu.addSeparator()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user