mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
16 lines
282 B
QML
16 lines
282 B
QML
import QtQuick 2.6
|
|
|
|
import QtGraphicalEffects 1.0
|
|
|
|
Image {
|
|
id: favorites_button_compact
|
|
source: "info-favorites.png"
|
|
|
|
ColorOverlay {
|
|
anchors.fill: favorites_button_compact
|
|
source: favorites_button_compact
|
|
color: "#e84852"
|
|
}
|
|
}
|
|
|