|
|
|
@ -186,7 +186,7 @@ ApplicationWindow { |
|
|
|
|
|
|
|
|
|
ToggleButton { |
|
|
|
|
checked: imagePack.isEmotePack |
|
|
|
|
onToggled: imagePack.isEmotePack = checked |
|
|
|
|
onClicked: imagePack.isEmotePack = checked |
|
|
|
|
Layout.alignment: Qt.AlignRight |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -196,7 +196,7 @@ ApplicationWindow { |
|
|
|
|
|
|
|
|
|
ToggleButton { |
|
|
|
|
checked: imagePack.isStickerPack |
|
|
|
|
onToggled: imagePack.isStickerPack = checked |
|
|
|
|
onClicked: imagePack.isStickerPack = checked |
|
|
|
|
Layout.alignment: Qt.AlignRight |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -251,7 +251,7 @@ ApplicationWindow { |
|
|
|
|
|
|
|
|
|
ToggleButton { |
|
|
|
|
checked: imagePack.data(imagePack.index(currentImageIndex, 0), SingleImagePackModel.IsEmote) |
|
|
|
|
onToggled: imagePack.setData(imagePack.index(currentImageIndex, 0), text, SingleImagePackModel.IsEmote) |
|
|
|
|
onClicked: imagePack.setData(imagePack.index(currentImageIndex, 0), checked, SingleImagePackModel.IsEmote) |
|
|
|
|
Layout.alignment: Qt.AlignRight |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -261,7 +261,7 @@ ApplicationWindow { |
|
|
|
|
|
|
|
|
|
ToggleButton { |
|
|
|
|
checked: imagePack.data(imagePack.index(currentImageIndex, 0), SingleImagePackModel.IsSticker) |
|
|
|
|
onToggled: imagePack.setData(imagePack.index(currentImageIndex, 0), text, SingleImagePackModel.IsSticker) |
|
|
|
|
onClicked: imagePack.setData(imagePack.index(currentImageIndex, 0), checked, SingleImagePackModel.IsSticker) |
|
|
|
|
Layout.alignment: Qt.AlignRight |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|