summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp11
-rw-r--r--src/mainwindow.cpp3
2 files changed, 10 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 53e881f5..49de48a9 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -82,19 +82,24 @@ int main(int argc, char **argv)
about.addCredit(ki18n("Abuus"),
ki18n("Webview mouse event support"),
- "hdevalence@gmail.com",
+ "buusmail@gmail.com",
"");
about.addCredit(ki18n("Johannes Zellner"),
ki18n("Patches, suggestions, testing, bugfixing"),
- "hdevalence@gmail.com",
+ "webmaster@nebulon.de",
"");
about.addCredit(ki18n("Ivan Čukić"),
ki18n("Patches, bugfixing"),
"ivan@fomentgroup.org",
"");
-
+
+ about.addCredit(ki18n("Adrià Arrufat"),
+ ki18n("New tab loading animation"),
+ "swiftscythe@gmail.com",
+ "");
+
// Initialize command line args
KCmdLineArgs::init(argc, argv, &about);
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index bb29791c..cebb7454 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -255,7 +255,8 @@ void MainWindow::setupActions()
actionCollection()->addAction(QLatin1String("stop_reload") , m_stopReloadAction);
m_stopReloadAction->setShortcutConfigurable(false);
connect(m_view, SIGNAL(browserLoading(bool)), this, SLOT(slotBrowserLoading(bool)));
-
+ slotBrowserLoading(false); //first init for blank start page
+
// ============== Custom Actions
a = new KAction(KIcon("document-open-remote"), i18n("Open Location"), this);
a->setShortcut(Qt::CTRL + Qt::Key_L);