diff options
author | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-06-22 16:48:11 +0200 |
---|---|---|
committer | Panagiotis Papadopoulos <pano_90@gmx.net> | 2009-06-22 16:48:11 +0200 |
commit | 2ab3a19dbc2bf02cea6bd9b733a38830a991ad32 (patch) | |
tree | c5de53e4881842fd35789c296d518b1927fb6f2e /src/mainwindow.cpp | |
parent | Changed the string a bit to keep consistency (diff) | |
parent | Fixing popup pos && removing unwanted statusBar (diff) | |
download | rekonq-2ab3a19dbc2bf02cea6bd9b733a38830a991ad32.tar.xz |
Merge commit 'rekonq-master/master'
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index c7e3c945..519081d6 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -136,6 +136,9 @@ MainWindow::MainWindow() // toolbar position, icon size, etc. setupGUI(); + // no more status bar.. + setStatusBar(0); + QTimer::singleShot(0, this, SLOT(postLaunch())); } @@ -887,9 +890,12 @@ void MainWindow::notifyMessage(const QString &msg, Rekonq::Notify status) m_popup->setView(msg); + int h = KGlobalSettings::generalFont().pointSize(); + kWarning() << "h: " << h; + // setting popus in bottom-left position int x = geometry().x(); - int y = geometry().y() + height() - 45; + int y = geometry().y() + height() - h*4; QPoint p(x,y); m_popup->show(p); |