Added gui elements for setting margins and auto-replace

This commit is contained in:
Veronica K. B. Olsen
2019-06-10 22:46:15 +02:00
parent 30f25fcb2b
commit 8fd7d8c666
3 changed files with 145 additions and 14 deletions
+15
View File
@@ -70,3 +70,18 @@ class nwLabels():
}
# END Class nwLabels
class nwQuotes():
SINGLE = [
("'", "'", "Straight"),
("", "", "English"),
]
DOUBLE = [
("\"", "\"", "Straight"),
("", "", "English"),
("«", "»", "Frensh"),
("»", "«", "Danish"),
]
# END Class nwQuotes