From db8b5b506274bc01376303d3a3a2559954e9389b Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 4 Jun 2022 20:35:31 -0700 Subject: switch circles to 'o' to avoid conflicting with copy --- drawing.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drawing.lua') diff --git a/drawing.lua b/drawing.lua index 330af31..0566a7e 100644 --- a/drawing.lua +++ b/drawing.lua @@ -418,7 +418,7 @@ function Drawing.keychord_pressed(chord) local mx,my = Drawing.coord(love.mouse.getX()-16), Drawing.coord(love.mouse.getY()-drawing.y) local j = Drawing.insert_point(drawing.points, mx,my) table.insert(drawing.pending.vertices, j) - elseif chord == 'C-c' and not love.mouse.isDown('1') then + elseif chord == 'C-o' and not love.mouse.isDown('1') then Current_drawing_mode = 'circle' elseif love.mouse.isDown('1') and chord == 'a' and Current_drawing_mode == 'circle' then local drawing = Drawing.current_drawing() @@ -428,7 +428,7 @@ function Drawing.keychord_pressed(chord) local center = drawing.points[drawing.pending.center] drawing.pending.radius = geom.dist(center.x,center.y, mx,my) drawing.pending.start_angle = geom.angle(center.x,center.y, mx,my) - elseif love.mouse.isDown('1') and chord == 'c' then + elseif love.mouse.isDown('1') and chord == 'o' then Current_drawing_mode = 'circle' local drawing = Drawing.current_drawing() if drawing.pending.mode == 'freehand' then -- cgit 1.4.1-2-gfad0 blame commit diff stats
path: root/400.mu
blob: 94e517f8e8db26ae8ebbb8f8ab6d07e4c40fed3c (plain) (tree)
1
2
3
4
5
6
7
8
9
10