diff --git a/drawing.lua b/drawing.lua index 0566a7e..acec83b 100644 --- a/drawing.lua +++ b/drawing.lua @@ -472,7 +472,7 @@ function Drawing.keychord_pressed(chord) if drawing then smoothen(shape) end - elseif chord == 'C-v' and not love.mouse.isDown('1') then + elseif chord == 'C-u' and not love.mouse.isDown('1') then local drawing,_,p = Drawing.select_point_at_mouse() if drawing then if Previous_drawing_mode == nil then diff --git a/help.lua b/help.lua index e2f70cf..bc017bb 100644 --- a/help.lua +++ b/help.lua @@ -5,9 +5,9 @@ function draw_help_without_mouse_pressed(drawing) y = y + Line_height love.graphics.print("* Press the mouse button to start drawing a "..current_shape(), 16+30,y) y = y + Line_height - love.graphics.print("* Hover on a point and press 'ctrl+v' to start moving it,", 16+30,y) + love.graphics.print("* Hover on a point and press 'ctrl+u' to pick it up and start moving it,", 16+30,y) y = y + Line_height - love.graphics.print("then press the mouse button to finish", 16+30+bullet_indent(),y) + love.graphics.print("then press the mouse button to drop it", 16+30+bullet_indent(),y) y = y + Line_height love.graphics.print("* Hover on a point and press 'ctrl+n' to name it,", 16+30,y) y = y + Line_height