diff options
| author | Peter Penz <[email protected]> | 2007-03-01 20:59:24 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-03-01 20:59:24 +0000 |
| commit | 802a2572b3b85f84ca1e42a23110d81f0f3cc531 (patch) | |
| tree | 9c0f3956480cc9ea0b35e8a25b9fdbbfff2e01d9 | |
| parent | 31e75f52964d8160126ddb62bed533462347efee (diff) | |
Use the home URL from the settings instead of the "first bookmark" when starting Dolphin. The "first bookmark" is not automatically the home URL like in older Dolphin releases...
svn path=/trunk/KDE/kdebase/apps/; revision=638406
| -rw-r--r-- | src/dolphinmainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 491411cb2..72b6703d8 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -928,7 +928,7 @@ void DolphinMainWindow::init() setupActions();
- const KUrl& homeUrl = root.first().url();
+ const KUrl& homeUrl = settings.generalSettings()->homeUrl();
setCaption(homeUrl.fileName());
ViewProperties props(homeUrl);
m_view[PrimaryIdx] = new DolphinView(this,
|
