From e5a9fbbf3e918b66616f0792e3d9c84cc6643249 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sat, 26 Mar 2016 09:31:09 +0100 Subject: [PATCH] added a drop shadow for grid elements in windows/linux --- YACReaderLibrary/qml/GridComicsView.qml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/YACReaderLibrary/qml/GridComicsView.qml b/YACReaderLibrary/qml/GridComicsView.qml index 170060db..eaf7121e 100644 --- a/YACReaderLibrary/qml/GridComicsView.qml +++ b/YACReaderLibrary/qml/GridComicsView.qml @@ -51,6 +51,16 @@ Rectangle { height: grid.cellHeight color: "#00000000" + DropShadow { + anchors.fill: realCell + horizontalOffset: 0 + verticalOffset: 0 + radius: 8.0 + samples: 17 + color: "#FF000000" + source: realCell + visible: (Qt.platform.os === "osx") ? false : true; + } Rectangle { id: realCell