| # | Line 653 | Line 653 | XKeyPressedEvent *ekey; | |
|---|---|---|
| 653 | make_rpixmap(ourras, wind); | |
| 654 | redraw(0, 0, width, height); | |
| 655 | return(0); | |
| 656 | + | case 'f': /* turn on fast redraw */ |
| 657 | + | fast = 1; |
| 658 | + | make_rpixmap(ourras, wind); |
| 659 | + | return(0); |
| 660 | + | case 'F': /* turn off fast redraw */ |
| 661 | + | fast = 0; |
| 662 | + | free_rpixmap(ourras); |
| 663 | + | return(0); |
| 664 | case '0': /* recenter origin */ | |
| 665 | if (xoff == 0 & yoff == 0) | |
| 666 | return(0); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |