diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-06-04 21:48:35 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-06-04 21:48:35 -0700 |
commit | 7d1671051fab3a0b5d17b7a9571455b6ac41cbe6 (patch) | |
tree | 3d5149c9b8c90873ae27ccb09ab0c6ed5a0a878e | |
parent | 4c5ac9ae5ea50bb2a848ca79f2bb4a4828a2944d (diff) | |
download | lines.love-7d1671051fab3a0b5d17b7a9571455b6ac41cbe6.tar.gz |
yet another key conflict
-rw-r--r-- | drawing.lua | 2 | ||||
-rw-r--r-- | help.lua | 4 |
2 files changed, 3 insertions, 3 deletions
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 |