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

@ -15,16 +15,19 @@ Item {
property string videoBackground
property var hTextAlignment
property var vTextAlignment
property string font
property real fontSize
Presenter.Slide {
id: representation
anchors.fill: parent
textSize: width / 15
editMode: true
imageSource: imageBackground
videoSource: videoBackground
hTextAlignment: root.hTextAlignment
vTextAlignment: root.vTextAlignment
chosenFont: font
textSize: fontSize
preview: true
}