From 1a2ae6047dc3b994e5a0cb9abc12275c0e622bd6 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Sat, 5 Oct 2019 13:33:44 -0400 Subject: normalize app name for qsettings, will cause snippets window gemoetry to reset once --- python/examples/snippets/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/examples') 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: -- cgit v1.3.1