Skip to content

Commit

Permalink
Fix the loaded plugin names
Browse files Browse the repository at this point in the history
  • Loading branch information
tbttfox committed Jan 15, 2025
1 parent 8c13c98 commit f235d92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/blurdeform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def runBlurDeformUI():
global BLUR_DEFORM_UI
global BLUR_DEFORM_UI_ROOT

if not cmds.pluginInfo("blurPostDeform", q=True, loaded=True):
cmds.loadPlugin("blurPostDeform")
if not cmds.pluginInfo("blurdeform", q=True, loaded=True):
cmds.loadPlugin("blurdeform")

# make and show the UI
BLUR_DEFORM_UI_ROOT = rootWindow()
Expand Down
4 changes: 2 additions & 2 deletions scripts/blurdeform/blurdeform.py
Original file line number Diff line number Diff line change
Expand Up @@ -2523,8 +2523,8 @@ def deleteScriptJob(self):
cmds.scriptJob(kill=self.timeSliderChange, force=True)

def refreshForShow(self):
if not cmds.pluginInfo("blurPostDeform", q=True, loaded=True):
cmds.loadPlugin("blurPostDeform")
if not cmds.pluginInfo("blurdeform", q=True, loaded=True):
cmds.loadPlugin("blurdeform")

if self.addTimeLine:
self.addtheCallBack()
Expand Down

0 comments on commit f235d92

Please sign in to comment.