diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-04-12 10:44:40 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-04-12 10:47:34 +0530 |
| commit | c0ee5203201d4ddf4ed560f856cb0da958935fc6 (patch) | |
| tree | 443a3dc58372e3fbeb7ae7945551c4a1ae936af8 /src/widgets/BrowserWindow.cpp | |
| parent | 8c5e75578b063a4fb64dc7ecef4851a860d7674d (diff) | |
| download | null-browser-c0ee5203201d4ddf4ed560f856cb0da958935fc6.tar.gz null-browser-c0ee5203201d4ddf4ed560f856cb0da958935fc6.zip | |
Rename term tab with view
Diffstat (limited to 'src/widgets/BrowserWindow.cpp')
| -rw-r--r-- | src/widgets/BrowserWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/BrowserWindow.cpp b/src/widgets/BrowserWindow.cpp index f1b786b..cc3c6a8 100644 --- a/src/widgets/BrowserWindow.cpp +++ b/src/widgets/BrowserWindow.cpp @@ -27,10 +27,10 @@ BrowserWindow::BrowserWindow(const Configuration &configuration, const QStringLi // Open webviews for given urls if (urls.isEmpty()) { - webview_stack->open_url(configuration.new_tab_url.toString()); + webview_stack->open_url(configuration.new_view_url.toString()); } else { for (const auto &url : urls) { - webview_stack->open_url(url, OpenType::OpenUrlInTab); + webview_stack->open_url(url, OpenType::OpenUrlInView); } } |
