Add icon to saved view table

This commit is contained in:
2024-03-27 20:07:18 -05:00
parent 38aee86ccf
commit bd4f5f3633

View File

@ -69,6 +69,7 @@ public class SavedViewsMetaDataProvider
QTableMetaData table = new QTableMetaData() QTableMetaData table = new QTableMetaData()
.withName(SavedView.TABLE_NAME) .withName(SavedView.TABLE_NAME)
.withLabel("Saved View") .withLabel("Saved View")
.withIcon(new QIcon().withName("table_view"))
.withRecordLabelFormat("%s") .withRecordLabelFormat("%s")
.withRecordLabelFields("label") .withRecordLabelFields("label")
.withBackendName(backendName) .withBackendName(backendName)