Quote:
Originally Posted by ownedbycats
Is using "jump to top" while re-applying view (it also happens when manually selecting the current view) supposed to rapidly select and then deselect the first book in the list? The flash is a tiny bit distracting.
|
Code:
if view_info.get(cfg.KEY_JUMP_TO_TOP,False):
self.gui.library_view.scroll_to_row(0)
self.gui.library_view.set_current_row(0)
I thought set_current_row() would also scroll to the top, but it didn't for me, so we do both.
I don't see a flash, but Qt is a fickle beast. Your mileage varying is no surprise.