diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2019-10-05 13:33:44 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2019-10-05 13:33:44 -0400 |
| commit | 1a2ae6047dc3b994e5a0cb9abc12275c0e622bd6 (patch) | |
| tree | 6eaa0f4e980f3d3c108b4986e60627cb89e906f8 /python | |
| parent | 4cc5cc32319e6fca52dc2b44f8e416e67d8ae981 (diff) | |
normalize app name for qsettings, will cause snippets window gemoetry to reset once
Diffstat (limited to 'python')
| -rw-r--r-- | python/examples/snippets/__init__.py | 2 |
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: |
