From b1dc2398c9b17d963cd722dc4fb2d2da63a0c4d1 Mon Sep 17 00:00:00 2001 From: Charles Haley Date: Tue, 4 Jul 2017 16:09:12 +0200 Subject: [PATCH] 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? --- src/calibre/gui2/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/init.py b/src/calibre/gui2/init.py index 75c3b7e406..3e86fce142 100644 --- a/src/calibre/gui2/init.py +++ b/src/calibre/gui2/init.py @@ -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')