I'm trying to adapt a windows 10 python program to Linux: I use QListWidget in this program which is resizable But in Linux the height of a row is bigger.
I use setSpacing with a negative value to accomodate but it overlaps a bit
self.my_playlist = QListWidget(self.bgList)
self.my_playlist.setGeometry(7, 6, 276, 310)
self.my_playlist.setSpacing(-2)
I'm wondering if there is a way to reduce internal spacing