Skip to content
Snippets Groups Projects
Commit 158b8587 authored by Clemens Barth's avatar Clemens Barth
Browse files

T94008, T94292

When importing a PDB file, the user has to be in the 'OBJECT' mode. With the changes
in the code, this mode is automatically set before the PDB import. No error message
should appear when the 'EDIT' mode is still active.
parent 880efe42
No related branches found
No related tags found
No related merge requests found
......@@ -203,6 +203,9 @@ class IMPORT_OT_pdb(Operator, ImportHelper):
def execute(self, context):
# To be on the safe side, we switch to the 'OBJECT' mode.
bpy.ops.object.mode_set(mode='OBJECT', toggle=False)
# This is in order to solve this strange 'relative path' thing.
filepath_pdb = bpy.path.abspath(self.filepath)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment