From 5f563c4c0c9788615e2d6d67a6ecdd9faf01b8e2 Mon Sep 17 00:00:00 2001 From: Minoru Akagi Date: Fri, 19 Jun 2015 13:38:26 +0900 Subject: [PATCH] fix python error on applying plugin settings (fix #43) --- qgis2threejs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qgis2threejs.py b/qgis2threejs.py index ccd3c441..9efb0f27 100644 --- a/qgis2threejs.py +++ b/qgis2threejs.py @@ -124,6 +124,7 @@ def setting(self): dialog = SettingsDialog(self.iface.mainWindow()) dialog.show() if dialog.exec_(): + from pluginmanager import PluginManager self.pluginManager = PluginManager() def loadExportSettings(self, filename):