adding font and fontSize support

This commit is contained in:
Chris Cochrun 2022-09-26 10:35:44 -05:00
parent 2711bde130
commit ed632e0733
10 changed files with 128 additions and 7 deletions

View file

@ -28,6 +28,8 @@ Controls.Page {
property string dragItemAudio: ""
property string dragItemBackgroundType: ""
property string dragItemBackground: ""
property string dragItemFont: ""
property string dragItemFontSize
property bool editing: true
@ -173,6 +175,7 @@ Controls.Page {
function editSwitch(item) {
if (editMode) {
refocusTimer.repeat = false;
switch (editType) {
case "song" :
presentation.visible = false;
@ -226,6 +229,7 @@ Controls.Page {
presentationEditor.visible = false;
presentation.visible = true;
editMode = false;
refocusTimer.repeat = true;
presenting = true;
}
}