mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 04:54:29 -04:00
Remove redundant MenuBar in GridComicsView.qml to avoid crashes on macOS
This fix was originally proposed by @ShawnCarnell on YACReader's old Bitbucket repository.
This commit is contained in:
@ -345,14 +345,38 @@ Rectangle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//rating icon
|
//rating icon
|
||||||
RatingContextMenu {
|
Image {
|
||||||
id: ratingContextMenu
|
id: ratingImage
|
||||||
|
anchors {bottom: realCell.bottom; right: pageImage.left; bottomMargin: 5; rightMargin: Math.floor(pages.width)+12}
|
||||||
|
source: "star.png"
|
||||||
|
width: 13
|
||||||
|
height: 11
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onPressed: {
|
||||||
|
console.log("rating");
|
||||||
|
comicsSelectionHelper.clear();
|
||||||
|
comicsSelectionHelper.selectIndex(index);
|
||||||
|
grid.currentIndex = index;
|
||||||
|
ratingConextMenu.popup();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Menu {
|
||||||
|
id: ratingConextMenu
|
||||||
|
MenuItem { text: "1"; enabled: true; iconSource:"star_menu.png"; onTriggered: comicRatingHelper.rate(index,1) }
|
||||||
|
MenuItem { text: "2"; enabled: true; iconSource:"star_menu.png"; onTriggered: comicRatingHelper.rate(index,2) }
|
||||||
|
MenuItem { text: "3"; enabled: true; iconSource:"star_menu.png"; onTriggered: comicRatingHelper.rate(index,3) }
|
||||||
|
MenuItem { text: "4"; enabled: true; iconSource:"star_menu.png"; onTriggered: comicRatingHelper.rate(index,4) }
|
||||||
|
MenuItem { text: "5"; enabled: true; iconSource:"star_menu.png"; onTriggered: comicRatingHelper.rate(index,5) }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//comic rating
|
//comic rating
|
||||||
Text {
|
Text {
|
||||||
id: comicRating
|
id: comicRating
|
||||||
anchors {bottom: realCell.bottom; right: ratingContextMenu.left; margins: 4}
|
anchors {bottom: realCell.bottom; right: ratingImage.left; margins: 4}
|
||||||
text: rating>0?rating:"-"
|
text: rating>0?rating:"-"
|
||||||
color: textColor
|
color: textColor
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user