Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add missing close angle bracket omitted by previous commit |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
2dd295344e346e520ae4384cebedac26 |
| User & Date: | andygoth 2016-11-05 03:17:11.401 |
Context
|
2016-11-05
| ||
| 03:19 | Add explicit call to form submit() when changing a text entry so style_submenu_entry() can be used multiple times per page ... (check-in: 2929d5fced user: andygoth tags: trunk) | |
| 03:17 | Add missing close angle bracket omitted by previous commit ... (check-in: 2dd295344e user: andygoth tags: trunk) | |
| 03:14 | Cherrypick [2e9ac33a9a] ... (check-in: e32803bbf6 user: andygoth tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
556 557 558 559 560 561 562 |
cgi_printf(" size='%d'", -aSubmenuCtrl[i].iSize);
}else if( aSubmenuCtrl[i].iSize>0 ){
cgi_printf(
" size='%d' maxlength='%d'",
aSubmenuCtrl[i].iSize, aSubmenuCtrl[i].iSize
);
}
| | | 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 |
cgi_printf(" size='%d'", -aSubmenuCtrl[i].iSize);
}else if( aSubmenuCtrl[i].iSize>0 ){
cgi_printf(
" size='%d' maxlength='%d'",
aSubmenuCtrl[i].iSize, aSubmenuCtrl[i].iSize
);
}
@ ></span>
break;
case FF_MULTI: {
int j;
const char *zVal = P(zQPN);
if( aSubmenuCtrl[i].zLabel ){
cgi_printf(" %h", aSubmenuCtrl[i].zLabel);
}
|
| ︙ | ︙ |