diff --git a/mix/ClientModel.h b/mix/ClientModel.h index 5428bb6f8..92f06b48b 100644 --- a/mix/ClientModel.h +++ b/mix/ClientModel.h @@ -246,8 +246,6 @@ signals: void stateCleared(); /// new state has been processed void newState(unsigned _record, QVariantMap _accounts); - /// account has been added to the model - void accountAdded(QString _address, QString _amount); private: RecordLogEntry* lastBlock() const; diff --git a/mix/qml/BlockChain.qml b/mix/qml/BlockChain.qml index 43bed678f..ccc027444 100644 --- a/mix/qml/BlockChain.qml +++ b/mix/qml/BlockChain.qml @@ -429,7 +429,7 @@ ColumnLayout { height: 30 buttonShortcut: "" - sourceImg: "qrc:/qml/img/addblock@2x.png" + sourceImg: "qrc:/qml/img/newblock@2x.png" } } diff --git a/mix/qml/ScenarioLoader.qml b/mix/qml/ScenarioLoader.qml index accdc324a..58247b213 100644 --- a/mix/qml/ScenarioLoader.qml +++ b/mix/qml/ScenarioLoader.qml @@ -107,11 +107,13 @@ ColumnLayout Rectangle { id: editIconRect + anchors.top: scenarioName.top + anchors.topMargin: 6 anchors.left: scenarioName.right - anchors.leftMargin: 15 + anchors.leftMargin: 20 Image { - source: "qrc:/qml/img/edit.png" - width: 10 + source: "qrc:/qml/img/edittransaction.png" + width: 30 fillMode: Image.PreserveAspectFit anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter diff --git a/mix/qml/Watchers.qml b/mix/qml/Watchers.qml index 087dd1105..9625d9424 100644 --- a/mix/qml/Watchers.qml +++ b/mix/qml/Watchers.qml @@ -70,15 +70,15 @@ Rectangle { spacing: 15 Rectangle { - height: 20 + height: 15 width: parent.width - 30 color: "transparent" Row { id: rowHeader anchors.horizontalCenter: parent.horizontalCenter - anchors.verticalCenter: parent.verticalCenter - height: 5 + anchors.top: rowHeader.parent.top + anchors.topMargin: 6 spacing: 5 Label { id: fromLabel @@ -119,9 +119,9 @@ Rectangle { Image { anchors.right: rowHeader.parent.right anchors.top: rowHeader.parent.top - anchors.topMargin: 10 - source: "qrc:/qml/img/edit.png" - height: 15 + anchors.topMargin: -3 + source: "qrc:/qml/img/edittransaction2.png" + height: 30 fillMode: Image.PreserveAspectFit visible: from.text !== "" MouseArea diff --git a/mix/res.qrc b/mix/res.qrc index b50aa3d9f..c868ff34b 100644 --- a/mix/res.qrc +++ b/mix/res.qrc @@ -90,5 +90,10 @@ qml/img/saveicon@2x.png qml/img/sendtransactionicon.png qml/img/sendtransactionicon@2x.png + qml/img/edittransaction@2x.png + qml/img/newblock@2x.png + qml/img/edittransaction2@2x.png + qml/img/edittransaction.png + qml/img/edittransaction2.png