From c2a2845ee7f03d7caa32986ea03fd1824fca41f4 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 16 Jun 2017 15:53:39 +0200 Subject: [PATCH] Remove the tabs.movable setting --- qutebrowser/config/configdata.yml | 5 ----- qutebrowser/mainwindow/tabwidget.py | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/qutebrowser/config/configdata.yml b/qutebrowser/config/configdata.yml index 93a5354b0..9019c1e68 100644 --- a/qutebrowser/config/configdata.yml +++ b/qutebrowser/config/configdata.yml @@ -1049,11 +1049,6 @@ tabs.mousewheel_switching: type: Bool desc: Switch between tabs using the mouse wheel. -tabs.movable: - default: true - type: Bool - desc: Whether tabs should be movable. - tabs.new_position: default: next type: NewTabPosition diff --git a/qutebrowser/mainwindow/tabwidget.py b/qutebrowser/mainwindow/tabwidget.py index ea0463896..7eb354351 100644 --- a/qutebrowser/mainwindow/tabwidget.py +++ b/qutebrowser/mainwindow/tabwidget.py @@ -74,7 +74,7 @@ class TabWidget(QTabWidget): # WORKAROUND for PyQt 5.2 return tabbar = self.tabBar() - self.setMovable(config.val.tabs.movable) + self.setMovable(True) self.setTabsClosable(False) position = config.val.tabs.position selection_behavior = config.val.tabs.select_on_remove