Use pixel scrolling in the icon theme list

This commit is contained in:
Kovid Goyal 2015-08-27 10:10:14 +05:30
parent e1f7ebefa2
commit 4abda0ad43

View File

@ -516,6 +516,7 @@ class ChooseTheme(Dialog):
sb.setEditable(False), sb.setCurrentIndex(1)
sb.currentIndexChanged[int].connect(self.re_sort)
self.theme_list = tl = QListWidget(self)
tl.setVerticalScrollMode(tl.ScrollPerPixel)
self.delegate = Delegate(tl)
tl.setItemDelegate(self.delegate)
tl.itemDoubleClicked.connect(self.accept)