Remove the tabs.movable setting

This commit is contained in:
Florian Bruhin 2017-06-16 15:53:39 +02:00
parent 85bee4a7d2
commit c2a2845ee7
2 changed files with 1 additions and 6 deletions

View File

@ -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

View File

@ -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