From: Peter Penz Date: Wed, 25 Jul 2007 17:32:37 +0000 (+0000) Subject: Don't add the terminal to the right docking area, if it may only get aligned on the... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/e12944d443e1e1236cfaca20bdba9aeeeb003c5c?ds=sidebyside Don't add the terminal to the right docking area, if it may only get aligned on the top and bottom. svn path=/trunk/KDE/kdebase/apps/; revision=692484 --- diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index b20beb26b..641f12c05 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1379,7 +1379,7 @@ void DolphinMainWindow::setupDockWidgets() terminalDock->toggleViewAction()->setShortcut(Qt::Key_F4); actionCollection()->addAction("show_terminal_panel", terminalDock->toggleViewAction()); - addDockWidget(Qt::RightDockWidgetArea, terminalDock); + addDockWidget(Qt::BottomDockWidgetArea, terminalDock); connect(this, SIGNAL(urlChanged(KUrl)), terminalWidget, SLOT(setUrl(KUrl)));