Skip to content

Commit

Permalink
- Fixed a missed bind for bend command;
Browse files Browse the repository at this point in the history
  • Loading branch information
Micheus committed Oct 14, 2024
1 parent 3983312 commit 8188099
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins_src/autouv/wpc_autouv.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1264,6 +1264,8 @@ handle_command_1({bend,Type,{'ASK',Ask}}, St) ->
end);
handle_command_1({bend,{Type,Param}}, St) ->
wpc_bend:setup({Type,Param}, St);
handle_command_1({bend,Type,Param}, St) ->
wpc_bend:setup({Type,Param}, St);
handle_command_1({flip,horizontal}, St0) ->
St1 = wpa:sel_map(fun(_, We) -> flip_horizontal(We) end, St0),
St = update_selected_uvcoords(St1),
Expand Down

0 comments on commit 8188099

Please sign in to comment.