Added tooltips to TemplatePickerItems.

Longer names in QListWidget are often ellipsized, obsuring the template names.
The tooltips allow the user to see full names by hovering over items.
This commit is contained in:
Jaye Evins
2025-05-15 18:03:23 -04:00
parent ca68c84cad
commit 43cbc8fc3c
+1
View File
@@ -40,6 +40,7 @@ namespace glabels
setIcon( QIcon( MiniPreviewPixmap( tmplate, SIZE, SIZE ) ) );
setText( tmplate->name() );
setToolTip( tmplate->name() );
setFlags( Qt::ItemIsSelectable | Qt::ItemIsEnabled );
}