Skip to content

Commit

Permalink
fixed Reshape Override shortcut issue
Browse files Browse the repository at this point in the history
  • Loading branch information
magnoborgo authored May 6, 2023
1 parent 2d7b586 commit a242a68
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions user_keybinds.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ def _return_func():

if fx.prefs["KMFX.Disable KMFX Keybinds"] is False:

# start reshape override #
fx.unbind("r")
fx.viewer.setToolBind("Reshape", "")
fx.bind("r", callMethod(fx.actions["KMFXreshapeOverride"].execute))
# end reshape override #
if fx.prefs["KMFX_Load.Reshape Tool Override"] is True:
# start reshape override #
fx.unbind("r")
fx.viewer.setToolBind("Reshape", "")
fx.bind("r", callMethod(fx.actions["KMFXreshapeOverride"].execute))
# end reshape override #

fx.bind("Alt+o", callMethod(fx.actions["KMFXkeyframeVisibility"].execute, **{"mode": "default"}))
fx.bind("Alt+Shift+o", callMethod(fx.actions["KMFXkeyframeVisibility"].execute, **{"mode": "singleframe"}))
Expand Down

0 comments on commit a242a68

Please sign in to comment.