mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
Remove useless 'Open folder with logs' button (iOS)
This commit is contained in:
@@ -66,7 +66,8 @@ PageType {
|
||||
|
||||
ColumnLayout {
|
||||
Layout.alignment: Qt.AlignBaseline
|
||||
Layout.preferredWidth: root.width / 3
|
||||
Layout.preferredWidth: Qt.platform.os === "ios"? 0 : root.width / 3
|
||||
visible: Qt.platform.os !== "ios"
|
||||
|
||||
ImageButtonType {
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
@@ -90,7 +91,7 @@ PageType {
|
||||
|
||||
ColumnLayout {
|
||||
Layout.alignment: Qt.AlignBaseline
|
||||
Layout.preferredWidth: root.width / 3
|
||||
Layout.preferredWidth: root.width / ( Qt.platform.os === "ios" ? 2 : 3 )
|
||||
|
||||
ImageButtonType {
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
@@ -131,7 +132,7 @@ PageType {
|
||||
|
||||
ColumnLayout {
|
||||
Layout.alignment: Qt.AlignBaseline
|
||||
Layout.preferredWidth: root.width / 3
|
||||
Layout.preferredWidth: root.width / ( Qt.platform.os === "ios" ? 2 : 3 )
|
||||
|
||||
ImageButtonType {
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
|
||||
Reference in New Issue
Block a user