mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 04:54:29 -04:00
Update russian translation. Need to subtract and to bring the terminology to a common denominator
This commit is contained in:
29
YACReaderLibrary/qml/InfoTick.qml
Normal file
29
YACReaderLibrary/qml/InfoTick.qml
Normal file
@ -0,0 +1,29 @@
|
||||
import QtQuick 2.6
|
||||
|
||||
import QtGraphicalEffects 1.0
|
||||
|
||||
Item {
|
||||
|
||||
property bool read
|
||||
|
||||
signal readChangedByUser(bool read)
|
||||
|
||||
MouseArea {
|
||||
anchors.fill: read_compact
|
||||
onClicked: {
|
||||
readChangedByUser(!read);
|
||||
}
|
||||
}
|
||||
|
||||
Image {
|
||||
id: read_compact
|
||||
source: "info-tick.png"
|
||||
}
|
||||
|
||||
ColorOverlay {
|
||||
anchors.fill: read_compact
|
||||
source: read_compact
|
||||
color: read ? "#e84852" : "#1c1c1c"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user