diff --git a/images/local-node-full.png b/images/local-node-full.png index 3a894f41..6b820c48 100644 Binary files a/images/local-node-full.png and b/images/local-node-full.png differ diff --git a/images/local-node-full@2x.png b/images/local-node-full@2x.png index d461fcaa..f6ff2760 100644 Binary files a/images/local-node-full@2x.png and b/images/local-node-full@2x.png differ diff --git a/images/local-node.png b/images/local-node.png index 18a3c576..d3489d1f 100644 Binary files a/images/local-node.png and b/images/local-node.png differ diff --git a/images/local-node@2x.png b/images/local-node@2x.png index 59d39695..c19e47e2 100644 Binary files a/images/local-node@2x.png and b/images/local-node@2x.png differ diff --git a/images/remote-node.png b/images/remote-node.png index 24df8264..a31a6792 100644 Binary files a/images/remote-node.png and b/images/remote-node.png differ diff --git a/images/remote-node@2x.png b/images/remote-node@2x.png index eafa9499..5bb9fce7 100644 Binary files a/images/remote-node@2x.png and b/images/remote-node@2x.png differ diff --git a/wizard/WizardMenuItem.qml b/wizard/WizardMenuItem.qml index a46f56b4..59694bf4 100644 --- a/wizard/WizardMenuItem.qml +++ b/wizard/WizardMenuItem.qml @@ -63,6 +63,8 @@ RowLayout { visible: !rowlayout.checkbox && (!isOpenGL || MoneroComponents.Style.blackTheme) anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter + width: iconMouseArea.containsMouse || headerMouseArea.containsMouse || bodyMouseArea.containsMouse ? 65 : 60 + height: iconMouseArea.containsMouse || headerMouseArea.containsMouse || bodyMouseArea.containsMouse ? 65 : 60 source: "" } @@ -79,7 +81,9 @@ RowLayout { } MouseArea { + id: iconMouseArea cursorShape: Qt.PointingHandCursor + hoverEnabled: true anchors.fill: parent onClicked: { rowlayout.menuClicked(); @@ -110,7 +114,9 @@ RowLayout { } MouseArea { + id: headerMouseArea cursorShape: Qt.PointingHandCursor + hoverEnabled: true anchors.fill: parent onClicked: { rowlayout.menuClicked(); @@ -135,7 +141,9 @@ RowLayout { themeTransition: false MouseArea { + id: bodyMouseArea cursorShape: Qt.PointingHandCursor + hoverEnabled: true anchors.fill: parent onClicked: { rowlayout.menuClicked();