Means the dropdown needs to be scrollable depending on the resolution. Don’t need to show the scroll-bar, if we have space to make the dropdown taller to show all contents.
Asked
Active
Viewed 368 times
0
-
2Isn't that the default behaviour? – jpo38 Jul 03 '15 at 06:24
-
using http://stackoverflow.com/questions/26047184/how-to-change-the-size-of-a-qcomboboxs-qscrollbar, try: `QAbstractItemView *qv = combobox.view(); QScrollBar *scrollbar = qv->verticalScrollBar(); scrollbar->setVisible(false);` – gengisdave Jul 03 '15 at 07:48