yet another key conflict

This commit is contained in:
Kartik K. Agaram 2022-06-04 21:48:35 -07:00
parent 4c5ac9ae5e
commit 7d1671051f
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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