Differences From Artifact [fab4b81851]:
- File edit.c — part of check-in [417251f440] at 2023-08-25 21:53:45 on branch trunk — Correct a mistake in edit.c so that it does not mistakenly use RLE if the object's Dir variable is different than the previous object. (user: user, size: 64990) [annotate] [blame] [check-ins using]
To Artifact [9a00c6e87e]:
- File edit.c — part of check-in [382666e88a] at 2023-10-31 23:36:23 on branch trunk — Make control and middle button to draw lines from clicked location for helping with alignment. (user: user, size: 65095) [annotate] [blame] [check-ins using]
︙ | |||
1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 | 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 | + + + | return 0; case '^c': // Select class/image class_image_select(); return 0; case '^e': // Edit Misc/Dir of MRU slot mru_edit(mru+curmru); return 0; case '^l': // Draw lines from location draw_lines(number%64?:64,number/64); return prev; case '^s': // String list/edit string_list(); return 0; case '^u': // Add object (allow duplicates) if(prev) return prev; add_object_at(number&63?:64,number/64?:64,mru+curmru,0); return 0; |
︙ |