diff options
| author | Duong Do Minh Chau <[email protected]> | 2020-12-26 22:16:06 +0700 |
|---|---|---|
| committer | Elvis Angelaccio <[email protected]> | 2020-12-28 20:18:31 +0000 |
| commit | 238eb86db70416aa665aa11d10861669ffe604c1 (patch) | |
| tree | 3130614cb2cc987bbdb591c5524114c4566d9655 /src/dolphinmainwindow.cpp | |
| parent | 9a0552d51d60e40bd3045ea1f2fb483a65b55568 (diff) | |
Share actions with main window to avoid duplicating icon name and text
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -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 096429f73..734a6ac84 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1069,7 +1069,7 @@ void DolphinMainWindow::editSettings() container->view()->writeSettings(); const QUrl url = container->url(); - DolphinSettingsDialog* settingsDialog = new DolphinSettingsDialog(url, this); + DolphinSettingsDialog* settingsDialog = new DolphinSettingsDialog(url, this, actionCollection()); connect(settingsDialog, &DolphinSettingsDialog::settingsChanged, this, &DolphinMainWindow::refreshViews); connect(settingsDialog, &DolphinSettingsDialog::settingsChanged, &DolphinUrlNavigatorsController::slotReadSettings); |
