mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
Added publishing information to ComicInfo.qml
This commit is contained in:
parent
11b5e555cd
commit
0aa3aee921
@ -392,6 +392,61 @@ Rectangle {
|
|||||||
font.bold: true
|
font.bold: true
|
||||||
|
|
||||||
text: "Publisher"
|
text: "Publisher"
|
||||||
|
|
||||||
|
visible: publisher.visible || format.visible || color.visible || age_rating.visible
|
||||||
|
}
|
||||||
|
|
||||||
|
Flow {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
spacing: 20
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: publisher
|
||||||
|
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.publisher
|
||||||
|
|
||||||
|
visible: comicInfo.publisher
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: format
|
||||||
|
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.format
|
||||||
|
|
||||||
|
visible: comicInfo.format
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: color
|
||||||
|
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.color ? "color" : "b/w"
|
||||||
|
|
||||||
|
visible: comicInfo.color
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: age_rating
|
||||||
|
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.ageRating
|
||||||
|
|
||||||
|
visible: comicInfo.ageRating
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user