diff --git a/ui/app/AppLayouts/Browser/BrowserLayout.qml b/ui/app/AppLayouts/Browser/BrowserLayout.qml index ff655d8395..bdba5e3f36 100644 --- a/ui/app/AppLayouts/Browser/BrowserLayout.qml +++ b/ui/app/AppLayouts/Browser/BrowserLayout.qml @@ -56,6 +56,7 @@ Rectangle { // TODO we'll need a new dialog at one point because this one is not using the same call, but it's good for now property Component sendTransactionModalComponent: SignTransactionModal { + anchors.centerIn: parent store: browserWindow.globalStore contactsStore: browserWindow.globalStore.profileSectionStore.contactsStore } diff --git a/ui/imports/shared/popups/ModalPopup.qml b/ui/imports/shared/popups/ModalPopup.qml index 6fdc20730e..9a0492acbd 100644 --- a/ui/imports/shared/popups/ModalPopup.qml +++ b/ui/imports/shared/popups/ModalPopup.qml @@ -70,6 +70,8 @@ Popup { font.bold: true font.pixelSize: 17 height: visible ? 24 : 0 + width: visible ? parent.width - 44 : 0 + elide: Text.ElideRight visible: !!title verticalAlignment: Text.AlignVCenter }