Skip to content

Commit

Permalink
Merge pull request #30 from tokejepsen/master
Browse files Browse the repository at this point in the history
Panel title is not hard coded, but derived from the window title
  • Loading branch information
tokejepsen authored Oct 11, 2016
2 parents f1243cd + 92dfe0e commit 7d67dcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyblish_nuke/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def dock(window):
pane = nuke.getPaneFor("Properties.1")
widget_path = "pyblish_nuke.lib.pyblish_nuke_dockwidget"
panel = nukescripts.panels.registerWidgetAsPanel(widget_path,
"Pyblish",
window.windowTitle(),
"pyblish_nuke.dock",
True).addToPane(pane)

Expand Down
2 changes: 1 addition & 1 deletion pyblish_nuke/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

VERSION_MAJOR = 2
VERSION_MINOR = 0
VERSION_PATCH = 1
VERSION_PATCH = 2

version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info
Expand Down

0 comments on commit 7d67dcd

Please sign in to comment.