diff options
author | corvid <corvid@lavabit.com> | 2009-10-26 23:04:46 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-10-26 23:04:46 +0000 |
commit | 0eb66f6846deba4deb54a586eba157593043ff45 (patch) | |
tree | 4c938173d7a47ab73af943a317181ab5a0650a14 /src/form.cc | |
parent | 9389d4308c5730ba6fcf5e3b3cf2cffd8f176a79 (diff) |
let later space override previous space
The earlier space is less likely to be styled with the intended appearance.
Diffstat (limited to 'src/form.cc')
-rw-r--r-- | src/form.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/form.cc b/src/form.cc index 0f125c95..4a7e399a 100644 --- a/src/form.cc +++ b/src/form.cc @@ -552,7 +552,6 @@ void Html_tag_open_input(DilloHtml *html, const char *tag, int tagsize) // strtol(attrbuf, NULL, 10)); } HT2TB(html)->addWidget (embed, html->styleEngine->backgroundStyle()); - html->PrevWasSPC = false; } dFree(type); dFree(name); @@ -596,7 +595,6 @@ void Html_tag_open_isindex(DilloHtml *html, const char *tag, int tagsize) Html_add_input(html, DILLO_HTML_INPUT_INDEX, embed, NULL, NULL, FALSE); HT2TB(html)->addWidget (embed, html->styleEngine->backgroundStyle ()); - html->PrevWasSPC = false; a_Url_free(action); html->InFlags &= ~IN_FORM; @@ -665,7 +663,6 @@ void Html_tag_open_textarea(DilloHtml *html, const char *tag, int tagsize) Html_add_input(html, DILLO_HTML_INPUT_TEXTAREA, embed, name, NULL, false); HT2TB(html)->addWidget (embed, html->styleEngine->backgroundStyle ()); - html->PrevWasSPC = false; dFree(name); } @@ -752,7 +749,6 @@ void Html_tag_open_select(DilloHtml *html, const char *tag, int tagsize) HT2TB(html)->addWidget (embed, html->styleEngine->backgroundStyle ()); Html_add_input(html, type, embed, name, NULL, false); - html->PrevWasSPC = false; a_Html_stash_init(html); dFree(name); } @@ -1917,7 +1913,6 @@ static Embed *Html_input_image(DilloHtml *html, const char *tag, int tagsize) factory->createComplexButtonResource(IM2DW(Image), false); button = new Embed(complex_b_r); HT2TB(html)->addWidget (button, html->styleEngine->style ()); - html->PrevWasSPC = false; // gtk_widget_set_sensitive(widget, FALSE); /* Until end of FORM! */ /* a right button press brings up the image menu */ |