diff options
-rw-r--r-- | README | 10 | ||||
-rw-r--r-- | src/html.cc | 2 |
2 files changed, 6 insertions, 6 deletions
@@ -22,19 +22,19 @@ Fixed * no iteration inside simple lists Fixed * image links haven't been hooked yet Fixed * the scrolling position is not yet updated (when following a link, the former scroll position is kept). -Advanced * viewport scrolling is not yet optimized (takes lots of CPU) -Advanced * you may experience crashes from "assert" statements from +Fixed * viewport scrolling is not yet optimized (takes lots of CPU) +Fixed * you may experience crashes from "assert" statements from unfinished code. Fixed * context menus are not yet completely hooked or activated Fixed * Selecting text with the mouse is half hooked. This is, you can see the selected text in the terminal but can't paste. -Advanced * Searching for text is not yet hooked. Look in test/ directory +Fixed * Searching for text is not yet hooked. Look in test/ directory of dw2 for an example of find text. -Advanced * Form elements are not yet hooked/implemented. You can look +Fixed * Form elements are not yet hooked/implemented. You can look in dw2' test/dw_ui_test.cc to see what's already done. Fixed * Sometimes pages don't load giving a warning on an already closed IO. I'll try to look at this one soon. - * No image maps. +Fixed * No image maps. Fixed * The SELECT element inside FORMS is not implemented. * no FRAMES rendering * no https (there's a barebones prototype). diff --git a/src/html.cc b/src/html.cc index bc1ad4ab..8ae59c86 100644 --- a/src/html.cc +++ b/src/html.cc @@ -4758,7 +4758,7 @@ static void Html_tag_close_textarea(DilloHtml *html, int TagIdx) str = Html_parse_entities(html, html->Stash->str, html->Stash->len); form = html->forms->getRef (html->forms->size() - 1); form->inputs->getRef(form->inputs->size() - 1)->init_str = str; - widget = (Widget*)(form->inputs->get(form->inputs->size() - 1).widget); + widget = (Widget*)(form->inputs->getRef(form->inputs->size()-1)->widget); ((MultiLineTextResource *)((Embed *)widget)->getResource ()) ->setText(str); |