diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-05-25 16:17:45 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-05-25 16:17:45 +0200 |
commit | 02c82cfdb82809a36f5f2a697a6ecbc01880ace6 (patch) | |
tree | be3dfe1de3db5afe9f69a2dc19ee3b426d3f42f7 /src/protocolhandler.cpp | |
parent | Minor speed-up (diff) | |
download | rekonq-02c82cfdb82809a36f5f2a697a6ecbc01880ace6.tar.xz |
Another clean up in rekonq file:// pages
Diffstat (limited to 'src/protocolhandler.cpp')
-rw-r--r-- | src/protocolhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp index ba59b8f1..691ab002 100644 --- a/src/protocolhandler.cpp +++ b/src/protocolhandler.cpp @@ -302,7 +302,7 @@ QString ProtocolHandler::dirHandling(const KFileItemList &list) QString title = _url.prettyUrl(); // 3. main content - QString msg = i18nc("%1=an URL", "<h1>Index of %1</h1>", _url.prettyUrl()); + QString msg = i18nc("%1=an URL", "<h2>Index of %1</h2>", _url.prettyUrl()); if (rootUrl.cd("..")) @@ -313,7 +313,7 @@ QString ProtocolHandler::dirHandling(const KFileItemList &list) msg += "<a href=\"" + path + "\">" + i18n("Up to higher level directory") + "</a><br /><br />"; } - msg += QL1S("<table width=\"100%\">"); + msg += QL1S("<table width=\"95%\" align=\"center\">"); msg += QL1S("<tr>"); msg += QL1S("<th align=\"left\">") + i18n("Name") + QL1S("</th>"); msg += QL1S("<th align=\"center\">") + i18n("Size") + QL1S("</th>"); |