Skip to content

Commit

Permalink
fixed "Load/Save Settings" missing path to folder after Getools was r…
Browse files Browse the repository at this point in the history
…estarted through "Restart GETools" button
  • Loading branch information
GenEugene committed Nov 3, 2024
1 parent de5fefb commit be64fb6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GETOOLS_SOURCE/modules/GeneralWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@


class GeneralWindow:
_version = "v1.3.6"
_version = "v1.3.7"
_name = "GETools"
_title = _name + " " + _version

Expand Down Expand Up @@ -88,7 +88,7 @@ def LayoutMenuBar(self, parentLayout):
cmds.menuItem(label = "Reload Scene (force)", command = Scene.Reload, image = Icons.reset)
cmds.menuItem(label = "Exit Maya (force)", command = Scene.ExitMaya, image = Icons.off)
cmds.menuItem(divider = True)
cmds.menuItem(label = "Restart GETools", command = partial(self.RUN_DOCKED, "", True), image = Icons.reset)
cmds.menuItem(label = "Restart GETools", command = partial(self.RUN_DOCKED, self.directory, True), image = Icons.reset)
cmds.menuItem(label = "Close GETools", command = self.DockDelete, image = Icons.off)

# cmds.menu(label = "Edit", tearOff = True)
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ GETools changelog
- TODO added non-cycle origin animation with loop mode
**********************************************

v1.3.7
- [OVERLAPPY] fixed "Load/Save Settings" missing path to folder after Getools was restarted through "Restart GETools" button

v1.3.6
- added link for Tutorial Video button

Expand Down

0 comments on commit be64fb6

Please sign in to comment.