Overview
Comment: | Some corrections to the picture editor |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d941198b8b207ada2cb414977c82b80a |
User & Date: | user on 2021-06-03 21:06:48 |
Other Links: | manifest | tags |
Context
2021-06-04
| ||
20:54 | Correct the implementation of "else" in pattern blocks check-in: a800f290bf user: user tags: trunk | |
2021-06-03
| ||
21:06 | Some corrections to the picture editor check-in: d941198b8b user: user tags: trunk | |
2021-06-02
| ||
04:35 | Improvement to documentation and FAQ check-in: c0239a6664 user: user tags: trunk | |
Changes
Modified picedit.c from [4564fe9a7b] to [950f3bbcaa].
︙ | |||
829 830 831 832 833 834 835 | 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 | - + | case 5: // Fill rectangle if(i==1) { xx=x; yy=y; } else if(xx!=-1) { p=pict[sel]->data+(j=pict[sel]->size); if(xx<x) i=x,x=xx,xx=i; if(yy<y) i=y,y=yy,yy=i; |
︙ | |||
1571 1572 1573 1574 1575 1576 1577 | 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 | - + + | int sc=0; int max=load_picture_file(); int i,n; sqlite3_create_function(userdb,"VALID_NAME",1,SQLITE_UTF8|SQLITE_DETERMINISTIC,0,fn_valid_name,0,0); sqlite3_create_module(userdb,"GRAPH",&vt_graph,0); init_palette(); optionquery[1]=Q_imageSize; |
︙ |