Good day everyone. I'm trying to create a filemanager based on QListWidget
. However, I ran into a problem. In my manager I need to have some items be with checkboxes and the other items to be without them. The problem is that in the items without checkboxes the text and icons are shifted to the left (slightly in IconView
and substantially in ListView
).
Is there a way to make the text and icons in all checkboxes be on the same line?
1
votes
How can you have a IconView and a ListView of a QListWidget? Are you actually using QListView?
– Phlucious
Well, QListWidget inherits QListWiew and therefore has access to all its functions
– WereWind