diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mainwindow.cpp | 2 | ||||
-rw-r--r-- | src/tabbar.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index bd630580..e25373e9 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -217,7 +217,7 @@ void MainWindow::setupActions() m_stopReloadAction->setShortcutConfigurable(false); // ============== Custom Actions - a = new KAction(KIcon(), i18n("Open Location"), this); + a = new KAction(KIcon("document-open-remote"), i18n("Open Location"), this); actionCollection()->addAction(QLatin1String("open_location"), a); connect(a, SIGNAL(triggered(bool)) , this, SLOT(slotOpenLocation())); diff --git a/src/tabbar.cpp b/src/tabbar.cpp index cf3a1988..8163cb5c 100644 --- a/src/tabbar.cpp +++ b/src/tabbar.cpp @@ -50,6 +50,7 @@ TabBar::TabBar(QWidget *parent) setAcceptDrops(true); connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(contextMenuRequested(const QPoint &))); + // we count to 9 because Ctrl+0 is already taken by Normal Font for (int i = 1; i < 10; ++i) { @@ -213,4 +214,3 @@ void TabBar::reloadTab() { emit reloadTab(m_actualIndex); } - |