mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 11:04:25 -04:00
Display new metadata in the info views
This commit is contained in:
@ -523,6 +523,33 @@ SplitView {
|
||||
visible : currentComicInfo.number ? true : false
|
||||
}
|
||||
|
||||
Text {
|
||||
id: currentComicInfoArc
|
||||
color: currentComicDetailsFlowView.infoFlowTextColor
|
||||
font: currentComicDetailsFlowView.infoFont
|
||||
text: currentComicInfo.getStoryArcInfoString()
|
||||
rightPadding: 20
|
||||
visible : currentComicInfo.getStoryArcInfoString().length > 0
|
||||
}
|
||||
|
||||
Text {
|
||||
id: currentComicInfoAlternate
|
||||
color: currentComicDetailsFlowView.infoFlowTextColor
|
||||
font: currentComicDetailsFlowView.infoFont
|
||||
text: currentComicInfo.getAlternateSeriesString()
|
||||
rightPadding: 20
|
||||
visible : currentComicInfo.getStoryArcInfoString().length > 0
|
||||
}
|
||||
|
||||
Text {
|
||||
id: currentComicInfoSeriesGroup
|
||||
color: currentComicDetailsFlowView.infoFlowTextColor
|
||||
font: currentComicDetailsFlowView.infoFont
|
||||
text: currentComicInfo.seriesGroup ? currentComicInfo.seriesGroup : ""
|
||||
rightPadding: 20
|
||||
visible: currentComicInfo.seriesGroup ? true : false
|
||||
}
|
||||
|
||||
Text {
|
||||
id: currentComicInfoGenre
|
||||
color: currentComicDetailsFlowView.infoFlowTextColor
|
||||
|
Reference in New Issue
Block a user