mirror of
https://github.com/YACReader/yacreader
synced 2025-07-21 06:24:39 -04:00
Use theme in grids comic view.
This commit is contained in:
committed by
Luis Ángel San Martín
parent
ac0aa6ded5
commit
36e76d28e8
@ -69,7 +69,7 @@ Rectangle {
|
||||
samples: 17
|
||||
color: "#FF000000"
|
||||
source: realCell
|
||||
visible: (Qt.platform.os === "osx") ? false : true;
|
||||
visible: useDropShadows;
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
@ -130,7 +130,7 @@ Rectangle {
|
||||
rightMargin : commonBorder ? -commonBorderWidth : -rBorderwidth
|
||||
}
|
||||
|
||||
border.color: (Qt.platform.os === "osx") ? selectedBorderColor : "#ffcc00"
|
||||
border.color: selectedBorderColor
|
||||
border.width: 3
|
||||
|
||||
opacity: (dummyValue || !dummyValue) && (comicsSelectionHelper.isSelectedIndex(index) || mouseArea.containsMouse) ? 1 : 0
|
||||
@ -469,7 +469,7 @@ Rectangle {
|
||||
height: showCurrentComic ? 270 : 20
|
||||
|
||||
Rectangle {
|
||||
color: (Qt.platform.os === "osx") ? "#88FFFFFF" : "#88000000"
|
||||
color: currentComicBackgroundColor
|
||||
|
||||
id: currentComicVisualView
|
||||
|
||||
@ -505,7 +505,7 @@ Rectangle {
|
||||
samples: 17
|
||||
color: "#FF000000"
|
||||
source: currentCoverElement
|
||||
visible: (Qt.platform.os === "osx") ? false : true;
|
||||
visible: useDropShadows
|
||||
}
|
||||
|
||||
ColumnLayout
|
||||
@ -673,7 +673,7 @@ Rectangle {
|
||||
samples: 17
|
||||
color: "#AA000000"
|
||||
source: readButton
|
||||
visible: ((Qt.platform.os === "osx") ? false : true) && !readButton.pressed
|
||||
visible: useDropShadows && !readButton.pressed
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user