.

[?]
May 18, 2022, 6:18 AM
OAHNWDYG3V6EJQXJ333FD7M44E3VBZUWSKZ45SSFXVK5Q2HJUI4AC

Dependencies

  • [2] ZUOL7X6V move
  • [3] KVHUFUFV reorg
  • [4] SNDZOK6Q slightly less strange now that we have the same two ways to move points as any other operation
  • [5] U76D4P36 fix a typo
  • [6] RT6EV6OP delegate update events to drawings
  • [7] OTIBCAUJ love2d scaffold
  • [8] EFMLTMZG bugfix: restrict strokes to the drawing they started in
  • [9] WDWXNW7V slightly strange way to move points
  • [10] XX7G2FFJ intermingle freehand line drawings with text

Change contents

  • replacement in main.lua at line 132
    [3.8][3.8:48](),[3.498][3.3:47](),[3.48][3.3:47]()
    function love.mousepressed(x,y, button)
    propagate_to_button_handlers(x,y, button)
    [3.8]
    [2.1]
    function love.mousepressed(x,y, mouse_button)
    propagate_to_button_handlers(x,y, mouse_button)
  • edit in button.lua at line 1
    [3.2058]
    [3.2059]
    -- simple immediate-mode buttons
  • replacement in button.lua at line 14
    [3.2443][3.50:102]()
    function propagate_to_button_handlers(x, y, button)
    [3.2443]
    [3.2494]
    function propagate_to_button_handlers(x, y, mouse_button)
  • replacement in button.lua at line 17
    [3.2597][3.2597:2657]()
    if ev.onpress1 and button == 1 then ev.onpress1() end
    [3.2597]
    [3.2657]
    if ev.onpress1 and mouse_button == 1 then ev.onpress1() end