summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO4
-rw-r--r--src/mainwindow.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/TODO b/TODO
index 521c2ca6..be8f9854 100644
--- a/TODO
+++ b/TODO
@@ -23,8 +23,10 @@ DONE(?) definitely fix fonts!
- fix fonts
- webkit Icon
-- tab-reordering
+DONE tab-reordering
- focus on new tab just if no site loaded
+- provide konqueror-like confirmation exit dialog
+- import arora loading label
DONE redesign settings
DONE fix private browsing action
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 82f555ef..0fdd538e 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -315,8 +315,6 @@ void MainWindow::slotUpdateConfiguration()
defaultSettings->setFontFamily(QWebSettings::FixedFont, fixedFont.family());
defaultSettings->setFontSize(QWebSettings::DefaultFixedFontSize, fnSize);
- // =========== Privacy ==============
-
// ================ WebKit ============================
defaultSettings->setAttribute(QWebSettings::AutoLoadImages, ReKonfig::autoLoadImages());
defaultSettings->setAttribute(QWebSettings::JavascriptEnabled, ReKonfig::javascriptEnabled());
@@ -796,7 +794,7 @@ bool MainWindow::queryClose()
if (m_view->count() > 1)
{
int ret = KMessageBox::warningYesNo(this,
- i18n("Are you sure you want to close the window?" " There are %1 tab open" , m_view->count() ),
+ i18n("Are you sure you want to close the window?\nThere are %1 tab open" , m_view->count() ),
i18n("Closing")
);
if (ret == KMessageBox::No)