diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-20 02:08:34 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-20 02:08:34 +0200 |
commit | 4f6f43ddcc24da50e4c1da0c3923d6af75fc527e (patch) | |
tree | b76bd3feeccfbe23313d548e1bef0669f8526399 /src/homepage.cpp | |
parent | Fixing loading preview (diff) | |
download | rekonq-4f6f43ddcc24da50e4c1da0c3923d6af75fc527e.tar.xz |
Fixing websnap resizing...
Diffstat (limited to 'src/homepage.cpp')
-rw-r--r-- | src/homepage.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/homepage.cpp b/src/homepage.cpp index 14db5806..aa679999 100644 --- a/src/homepage.cpp +++ b/src/homepage.cpp @@ -95,13 +95,12 @@ QString HomePage::speedDial() for(int i = 0; i< urls.count(); ++i) { speed += "<div class=\"thumbnail\">"; - speed += "<a href=\"" + urls.at(i) + "\">"; speed += "<object type=\"application/image-preview\" width=\"200\">"; speed += "<param name=\"url\" value=\"" + urls.at(i) + "\">"; speed += "<param name=\"position\" value=\"" + QString::number(i) + "\">"; speed += "</object>"; speed += "<br />"; - speed += names.at(i) + "</a></div>"; + speed += "<a href=\"" + urls.at(i) + "\">" + names.at(i) + "</a></div>"; } return speed; } |