I’m subclassing QStyledItemDelegate to show a dropdown QCombobox in a QTableView. The delegate detects the dataType from the table’s model, and if the dataType == EnumMeta, shows a dropdown list of options. With my current implementation, the dropdown is only displayed after a user double clicks a table cell. The user must then click the […]