summaryrefslogtreecommitdiff
path: root/python/examples/snippets
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-10-05 13:33:44 -0400
committerJordan Wiens <jordan@psifertex.com>2019-10-05 13:33:44 -0400
commit1a2ae6047dc3b994e5a0cb9abc12275c0e622bd6 (patch)
tree6eaa0f4e980f3d3c108b4986e60627cb89e906f8 /python/examples/snippets
parent4cc5cc32319e6fca52dc2b44f8e416e67d8ae981 (diff)
normalize app name for qsettings, will cause snippets window gemoetry to reset once
Diffstat (limited to 'python/examples/snippets')
-rw-r--r--python/examples/snippets/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/snippets/__init__.py b/python/examples/snippets/__init__.py
index 15967b25..423b9c37 100644
--- a/python/examples/snippets/__init__.py
+++ b/python/examples/snippets/__init__.py
@@ -163,7 +163,7 @@ class Snippets(QDialog):
hlayout.addWidget(hsplitter)
self.showNormal() #Fixes bug that maximized windows are "stuck"
- self.settings = QSettings("Vector 35", "Snippet Editor")
+ self.settings = QSettings("Vector35", "Snippet Editor")
if self.settings.contains("ui/snippeteditor/geometry"):
self.restoreGeometry(self.settings.value("ui/snippeteditor/geometry"))
else: