diff options
| -rw-r--r-- | GridCardItem.ui.qml | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/GridCardItem.ui.qml b/GridCardItem.ui.qml index 2b4596e..c41477f 100644 --- a/GridCardItem.ui.qml +++ b/GridCardItem.ui.qml @@ -14,6 +14,8 @@ Item {  	property color badgeColor: "#ff0cbc87"  	property color badgeBackgroundColor: "#1a0cbc87"  	property string titleText: "Sketch from A to Z: for app designer" +	property alias imageArea: imageArea +	property alias titleArea: titleArea  //	property string textTruncateText: "Rooms oh fully taken by worse do. Points afraid but may end afraid but.."  	DropShadow { @@ -51,6 +53,11 @@ Item {  					radius: 10  				}  			} + +			MouseArea { +				id: imageArea +				anchors.fill: parent +			}  		}  		Item { @@ -140,6 +147,11 @@ Item {  					right: parent.right  					rightMargin: 20  				} + +				MouseArea { +					id: titleArea +					anchors.fill: parent +				}  			}  /*  			Label { |