diff --git a/ui/app/AppLayouts/Browser/BrowserLayout.qml b/ui/app/AppLayouts/Browser/BrowserLayout.qml index 896f405741..9926931b62 100644 --- a/ui/app/AppLayouts/Browser/BrowserLayout.qml +++ b/ui/app/AppLayouts/Browser/BrowserLayout.qml @@ -13,11 +13,6 @@ Item { y: 0 Layout.fillHeight: true Layout.fillWidth: true - // Those anchors show a warning too, but whithout them, there is a gap on the right - anchors.right: parent.right - anchors.rightMargin: 0 - anchors.left: parent.left - anchors.leftMargin: 0 WebView { id: browserContainer diff --git a/ui/app/AppLayouts/Chat/ChatLayout.qml b/ui/app/AppLayouts/Chat/ChatLayout.qml index 88df7d211d..3834537e65 100644 --- a/ui/app/AppLayouts/Chat/ChatLayout.qml +++ b/ui/app/AppLayouts/Chat/ChatLayout.qml @@ -12,11 +12,6 @@ SplitView { y: 0 Layout.fillHeight: true Layout.fillWidth: true - // Those anchors show a warning too, but whithout them, there is a gap on the right - anchors.right: parent.right - anchors.rightMargin: 0 - anchors.left: parent.left - anchors.leftMargin: 0 handleDelegate: Rectangle { implicitWidth: 1 diff --git a/ui/app/AppLayouts/Node/NodeLayout.qml b/ui/app/AppLayouts/Node/NodeLayout.qml index 2a16baf108..c26dd9c543 100644 --- a/ui/app/AppLayouts/Node/NodeLayout.qml +++ b/ui/app/AppLayouts/Node/NodeLayout.qml @@ -11,11 +11,6 @@ SplitView { y: 0 Layout.fillHeight: true Layout.fillWidth: true - // Those anchors show a warning too, but whithout them, there is a gap on the right - anchors.right: parent.right - anchors.rightMargin: 0 - anchors.left: parent.left - anchors.leftMargin: 0 ColumnLayout { id: rpcColumn diff --git a/ui/app/AppLayouts/Profile/ProfileLayout.qml b/ui/app/AppLayouts/Profile/ProfileLayout.qml index d143c7fe96..650a2eb2e0 100644 --- a/ui/app/AppLayouts/Profile/ProfileLayout.qml +++ b/ui/app/AppLayouts/Profile/ProfileLayout.qml @@ -14,11 +14,6 @@ Item { y: 0 Layout.fillHeight: true Layout.fillWidth: true - // Those anchors show a warning too, but whithout them, there is a gap on the right - anchors.right: parent.right - anchors.rightMargin: 0 - anchors.left: parent.left - anchors.leftMargin: 0 LeftTab { id: leftTab diff --git a/ui/app/AppLayouts/Wallet/WalletLayout.qml b/ui/app/AppLayouts/Wallet/WalletLayout.qml index 0456f22534..5f1fc64c9b 100644 --- a/ui/app/AppLayouts/Wallet/WalletLayout.qml +++ b/ui/app/AppLayouts/Wallet/WalletLayout.qml @@ -13,11 +13,6 @@ SplitView { y: 0 Layout.fillHeight: true Layout.fillWidth: true - // Those anchors show a warning too, but whithout them, there is a gap on the right - anchors.right: parent.right - anchors.rightMargin: 0 - anchors.left: parent.left - anchors.leftMargin: 0 LeftTab { id: leftTab diff --git a/ui/app/AppMain.qml b/ui/app/AppMain.qml index a958f9f72d..c7598d0c0f 100644 --- a/ui/app/AppMain.qml +++ b/ui/app/AppMain.qml @@ -151,11 +151,6 @@ RowLayout { Layout.fillWidth: true Layout.alignment: Qt.AlignLeft | Qt.AlignTop Layout.fillHeight: true - // Those anchors show a warning, but they are the only way to have QT Creator show correctly - anchors.left: tabBar.right - anchors.leftMargin: 0 - anchors.right: parent.right - anchors.rightMargin: 0 currentIndex: tabBar.currentIndex ChatLayout {