mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Get the ghost ondevice column fix to also work on windows
This commit is contained in:
parent
e6b883e212
commit
5cd4b3930f
@ -457,10 +457,6 @@ class BooksView(QTableView): # {{{
|
||||
# Ondevice column {{{
|
||||
def set_ondevice_column_visibility(self):
|
||||
col, h = self._model.column_map.index('ondevice'), self.column_header
|
||||
# Because of a bug in Qt 5 we have to ensure that the header is actually
|
||||
# relaid out by changing this value, without this sometimes the ghost
|
||||
# of the ondevice column remains visible when changing libraries
|
||||
h.setSectionHidden(col, not h.isSectionHidden(col))
|
||||
h.setSectionHidden(col, not self._model.device_connected)
|
||||
|
||||
def set_device_connected(self, is_connected):
|
||||
@ -564,6 +560,13 @@ class BooksView(QTableView): # {{{
|
||||
if not h.isSectionHidden(i) and h.sectionSize(i) < 3:
|
||||
sz = h.sectionSizeHint(i)
|
||||
h.resizeSection(i, sz)
|
||||
# Because of a bug in Qt 5 we have to ensure that the header is actually
|
||||
# relaid out by changing this value, without this sometimes the ghost
|
||||
# of the ondevice column remains visible when changing libraries
|
||||
col = self._model.column_map.index('ondevice')
|
||||
val = h.isSectionHidden(col)
|
||||
h.setSectionHidden(col, not val)
|
||||
h.setSectionHidden(col, val)
|
||||
|
||||
def get_default_state(self):
|
||||
old_state = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user