diff --git a/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapInputNewWalletNameRightPanelForm.ui.qml b/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapInputNewWalletNameRightPanelForm.ui.qml index e7bd1c973ef2ba7a9c739fe21347182a98d004fd..a72b24f16785d807b713453780ec19783b3d63d4 100644 --- a/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapInputNewWalletNameRightPanelForm.ui.qml +++ b/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapInputNewWalletNameRightPanelForm.ui.qml @@ -22,7 +22,7 @@ DapAbstractRightPanel id: signatureTypeWallet ListElement { - name: "Dilithium in my head" + name: "Dilithium" sign: "sig_dil" } ListElement diff --git a/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapNewPaymentMainRightPanel.qml b/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapNewPaymentMainRightPanel.qml index f5a190eb7e9570daa9b1e480f032dcc194ea9440..59ffd4fd904d6c708f9802b40c565342cc45e0dc 100644 --- a/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapNewPaymentMainRightPanel.qml +++ b/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapNewPaymentMainRightPanel.qml @@ -25,4 +25,10 @@ DapNewPaymentMainRightPanelForm nextActivated("transaction created") } + + dapCmboBoxToken.onCurrentIndexChanged: + { + dapSendedToken = dapCmboBoxToken.mainLineText; + } + } diff --git a/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapNewPaymentMainRightPanelForm.ui.qml b/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapNewPaymentMainRightPanelForm.ui.qml index 8790b4cb28f219bde4c7402bcb02738828493893..55c36186d75076adadf32dd38094fc1c0cab86a3 100644 --- a/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapNewPaymentMainRightPanelForm.ui.qml +++ b/CellFrameDashboardGUI/screen/desktop/Dashboard/RightPanel/DapNewPaymentMainRightPanelForm.ui.qml @@ -14,6 +14,8 @@ DapAbstractRightPanel property alias dapCmboBoxTokenModel: comboboxToken.model property alias dapCmboBoxToken: comboboxToken + //@param dapSendedToken Name of token to send + property string dapSendedToken: "" property string dapCurrentWallet @@ -245,7 +247,8 @@ DapAbstractRightPanel font: dapMainFonts.dapMainFontTheme.dapFontRobotoRegular16 horizontalAlignment: Text.AlignRight color: "#070023" - text: "KLVN" + text: dapSendedToken + } } Rectangle @@ -272,7 +275,8 @@ DapAbstractRightPanel anchors.topMargin: 16 * pt height: textAmountConvertValue.height color: "transparent" - Text + ////////////Delete all USD + /*Text { id: textAmountConvertValue anchors.verticalCenter: parent.verticalCenter @@ -292,7 +296,7 @@ DapAbstractRightPanel horizontalAlignment: Text.AlignRight color: "#757184" text: qsTr("USD") - } + }*/ } }