Skip to content

Commit

Permalink
NXDRIVE-2618: Fix accounts links clickable area (#2719)
Browse files Browse the repository at this point in the history
  • Loading branch information
rom1win authored May 14, 2021
1 parent fe8fb5a commit a7213a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nxdrive/data/qml/AccountsTab.qml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Rectangle {
icon: MdiFont.Icon.accountPlus
size: 128;
Layout.alignment: Qt.AlignHCenter
enabled: false
onClicked: newAccountPopup.open()
}

ScaledText {
Expand Down
4 changes: 2 additions & 2 deletions nxdrive/data/qml/Link.qml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ ScaledText {
MouseArea {
id: linkArea
enabled: parent.enabled
width: parent.width * 3/2
height: parent.height * 3/2
width: parent.width
height: parent.height
anchors.centerIn: parent
onClicked: control.clicked()
cursorShape: Qt.PointingHandCursor
Expand Down

0 comments on commit a7213a0

Please sign in to comment.