diff --git a/Modules/SettingsPanel/Tabs/AboutTab.qml b/Modules/SettingsPanel/Tabs/AboutTab.qml index 5ae5d12..a7b7b3d 100644 --- a/Modules/SettingsPanel/Tabs/AboutTab.qml +++ b/Modules/SettingsPanel/Tabs/AboutTab.qml @@ -217,7 +217,7 @@ ColumnLayout { anchors.margins: Style.marginXS * scaling fallbackIcon: "person" borderColor: Color.mPrimary - borderWidth: Math.max(1, Style.borderM * scaling) + borderWidth: Math.max(1, Style.borderL * scaling) imageRadius: width * 0.5 } } diff --git a/Widgets/NImageRounded.qml b/Widgets/NImageRounded.qml index 88cfa05..c7fbde9 100644 --- a/Widgets/NImageRounded.qml +++ b/Widgets/NImageRounded.qml @@ -33,6 +33,7 @@ Rectangle { mipmap: true smooth: true asynchronous: true + antialiasing: true fillMode: Image.PreserveAspectCrop } @@ -53,6 +54,7 @@ Rectangle { Rectangle { anchors.fill: parent radius: scaledRadius + antialiasing: true } } @@ -73,6 +75,7 @@ Rectangle { color: Color.transparent border.color: parent.borderColor border.width: parent.borderWidth + antialiasing: true z: 10 } }