From da804d95f7d137b10fef0a42b746f13c807a1aa9 Mon Sep 17 00:00:00 2001 From: Peter Elliott Date: Thu, 7 Oct 2021 02:12:14 -0600 Subject: [PATCH] Browser: Use reorderable tabs --- Userland/Applications/Browser/BrowserWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Applications/Browser/BrowserWindow.cpp b/Userland/Applications/Browser/BrowserWindow.cpp index 834f3ca627..824ee735c3 100644 --- a/Userland/Applications/Browser/BrowserWindow.cpp +++ b/Userland/Applications/Browser/BrowserWindow.cpp @@ -61,6 +61,7 @@ BrowserWindow::BrowserWindow(CookieJar& cookie_jar, URL url) auto& top_line = *widget.find_descendant_of_type_named("top_line"); m_tab_widget = *widget.find_descendant_of_type_named("tab_widget"); + m_tab_widget->set_reorder_allowed(true); m_tab_widget->set_close_button_enabled(true); m_tab_widget->on_tab_count_change = [&top_line](size_t tab_count) {