I'm creating font selection and I'm using QFontComboBox. Is there any possibility to delete MS serif in QFontComboBox list?
TIA
I'm creating font selection and I'm using QFontComboBox. Is there any possibility to delete MS serif in QFontComboBox list?
TIA
QFontComboBox is a combo box. Therefore, removeItem() should remove an item from it. Number of fonts in the combo box should be provided by count(). You can traverse the combo box using indexing and search the unwanted fonts using, for example itemText().
if I delete the index "60" using removeItem(60). the next index will be delete because of changing of index. how can I fix that?
Bookmarks