diff options
author | corvid <corvid@dillo.org> | 2014-02-15 19:33:08 +0000 |
---|---|---|
committer | corvid <corvid@dillo.org> | 2014-02-15 19:33:08 +0000 |
commit | 1ddd844bb0de6d40116d460e6707bef31e72c1da (patch) | |
tree | da4445d1948df9391bb1a707759e3c4adb10c013 /src/form.cc | |
parent | 8711f43231e783f0c71a0d3f903c747188bfa0ae (diff) |
input image shouldn't recognize hspace,vspace,border attrs
Diffstat (limited to 'src/form.cc')
-rw-r--r-- | src/form.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/form.cc b/src/form.cc index c5bb10af..07c12815 100644 --- a/src/form.cc +++ b/src/form.cc @@ -2003,7 +2003,7 @@ static Embed *Html_input_image(DilloHtml *html, const char *tag, int tagsize) html->styleEngine->setPseudoLink (); /* create new image and add it to the button */ - a_Html_image_attrs(html, tag, tagsize); + a_Html_common_image_attrs(html, tag, tagsize); if ((Image = a_Html_image_new(html, tag, tagsize))) { // At this point, we know that Image->ir represents an image // widget. Notice that the order of the casts matters, because |