astashov / tixi

Ascii charts editor
http://textik.com
Eclipse Public License 1.0
428 stars 31 forks source link

Let the delete key delete #33

Closed mifriis closed 1 year ago

mifriis commented 2 years ago

Delete is keycode 46

I noticed backspace (keycode 8) was mapped to delete elements.

This PR seeks to let delete do the same.

If there's a way to have the switch match both case 8 and 46 and execute the same code, please help by suggesting what that looks like.

closes #11