From 818809990e167607e7a40c2570952b3da4f2c875 Mon Sep 17 00:00:00 2001 From: micheus Date: Mon, 14 Oct 2024 13:04:33 -0300 Subject: [PATCH] - Fixed a missed bind for bend command; --- plugins_src/autouv/wpc_autouv.erl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins_src/autouv/wpc_autouv.erl b/plugins_src/autouv/wpc_autouv.erl index 95786513..22f90080 100644 --- a/plugins_src/autouv/wpc_autouv.erl +++ b/plugins_src/autouv/wpc_autouv.erl @@ -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),