From dbce62bc0d325ea609ff62db8e034b87836ddc97 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sat, 13 Sep 2025 08:48:51 -0400 Subject: [PATCH] UI/Qt: Move the View Source action back to the Inspect menu Accidental copy/paste from e6b32bbbbf6c3b80649e355c2ad7f6ad87430fc3. --- UI/Qt/BrowserWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Qt/BrowserWindow.cpp b/UI/Qt/BrowserWindow.cpp index 9ea097c4b0..ad7684c5a0 100644 --- a/UI/Qt/BrowserWindow.cpp +++ b/UI/Qt/BrowserWindow.cpp @@ -209,7 +209,7 @@ BrowserWindow::BrowserWindow(Vector const& initial_urls, IsPopupWindow auto* inspect_menu = m_hamburger_menu->addMenu("&Inspect"); menuBar()->addMenu(inspect_menu); - edit_menu->addAction(create_application_action(*this, Application::the().view_source_action())); + inspect_menu->addAction(create_application_action(*this, Application::the().view_source_action())); m_enable_devtools_action = new QAction("Enable &DevTools", this); m_enable_devtools_action->setIcon(load_icon_from_uri("resource://icons/browser/dom-tree.png"sv));