From 747a7bd3bda841b392bf39307d98d5362803820b Mon Sep 17 00:00:00 2001 From: vsr Date: Thu, 4 Feb 2016 12:08:30 +0300 Subject: [PATCH] Solve problem with probably incorrect set QT_PLUGIN_PATH environment variable. --- bin/gui_setenv.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/gui_setenv.py b/bin/gui_setenv.py index 3205e938e..16b9b0d68 100644 --- a/bin/gui_setenv.py +++ b/bin/gui_setenv.py @@ -29,6 +29,7 @@ def set_env( args ): dirs = re.split( ":|;", os.getenv( 'VTK_AUTOLOAD_PATH', vtk_overloads_dir ) ) if vtk_overloads_dir not in dirs: dirs[0:0] = [vtk_overloads_dir] os.environ['VTK_AUTOLOAD_PATH'] = os.pathsep.join(dirs) + os.environ['QT_PLUGIN_PATH'] = '' return -- 2.39.2