From 65267ebd28c7b0268eff39092b45cf1831c2cfad Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Wed, 7 Oct 2009 16:34:03 +0200 Subject: Re-ordered the entries in the navigation bar a bit --- src/homepage.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src') diff --git a/src/homepage.cpp b/src/homepage.cpp index 98060bed..385df183 100644 --- a/src/homepage.cpp +++ b/src/homepage.cpp @@ -179,6 +179,13 @@ QString HomePage::homePageMenu(KUrl currentUrl) KIconLoader *loader = KIconLoader::global(); + menu += "
"; + menu += "iconPath("rating", KIconLoader::Desktop) + "\" />"; + menu += "Favorites
"; + menu += "
iconPath("edit-undo", KIconLoader::Desktop) + "\" />"; menu += "Last Visited
"; - menu += "
"; - menu += "iconPath("view-history", KIconLoader::Desktop) + "\" />"; - menu += "History
"; - menu += "
"; - menu += "iconPath("rating", KIconLoader::Desktop) + "\" />"; - menu += "Favorites
"; + menu += "\">"; + menu += "iconPath("view-history", KIconLoader::Desktop) + "\" />"; + menu += "History"; return menu; } -- cgit v1.2.1 From d22a18604fc7179fb80d788252f019e26539ddeb Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Wed, 7 Oct 2009 16:38:05 +0200 Subject: Removed superfluous headings in the new tab page This results in more space for important stuff :-) --- src/homepage.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src') diff --git a/src/homepage.cpp b/src/homepage.cpp index 385df183..e6d75d98 100644 --- a/src/homepage.cpp +++ b/src/homepage.cpp @@ -77,22 +77,18 @@ QString HomePage::rekonqHomePage(const KUrl &url) QString title, speed; if(url == KUrl("rekonq:lastSites")) { - title = "

" + i18n("Last Visited Sites") + "

"; speed = lastVisitedSites(); } if(url == KUrl("rekonq:history")) { - title = "

" + i18n("History") + "

"; speed = fillHistory(); } if(url == KUrl("rekonq:bookmarks")) { - title = "

" + i18n("Bookmarks") + "

"; speed = fillBookmarks(); } if(url == KUrl("rekonq:home") || url == KUrl("rekonq:favorites")) { - title = "

" + i18n("Favorites") + "

"; speed = fillFavorites(); } -- cgit v1.2.1