Change the button order as requested. Question: why is the order 'cb, gv' in wide but 'gv, cb' in narrow? Using the logic that the buttons affect the center booklist pane, shouldn't the order be the same?

This commit is contained in:
Charles Haley
2017-07-04 16:09:12 +02:00
parent beadc00667
commit b1dc2398c9
+1 -1
View File
@@ -568,7 +568,7 @@ class LayoutMixin(object): # {{{
self.bd_splitter.setSizePolicy(QSizePolicy(QSizePolicy.Expanding,
QSizePolicy.Expanding))
self.centralwidget.layout().addWidget(self.bd_splitter)
button_order = ('sb', 'tb', 'cb', 'gv', 'bd', 'qv')
button_order = ('sb', 'tb', 'cb', 'gv', 'qv', 'bd')
# }}}
self.qv = find_plugin('Show Quickview')