implemented font and fontsize in toolbar of songeditor

This commit is contained in:
Chris Cochrun 2022-04-22 16:42:07 -05:00
parent bc6f6b0606
commit eaa32c8b2b
4 changed files with 39 additions and 4 deletions

View file

@ -99,6 +99,8 @@ QHash<int, QByteArray> SongSqlModel::roleNames() const
names[Qt::UserRole + 8] = "backgroundType";
names[Qt::UserRole + 9] = "horizontalTextAlignment";
names[Qt::UserRole + 10] = "verticalTextAlignment";
names[Qt::UserRole + 11] = "font";
names[Qt::UserRole + 12] = "fontSize";
return names;
}