diff --git a/src/app/commoncomponents/MaterialRadioButton.qml b/src/app/commoncomponents/MaterialRadioButton.qml index d9c90cefdaac7c73a81c53b6110230e3e2396e53..3ef7c8ccb7772730d8c785e8d9069fdadd9530e7 100644 --- a/src/app/commoncomponents/MaterialRadioButton.qml +++ b/src/app/commoncomponents/MaterialRadioButton.qml @@ -102,7 +102,7 @@ RadioButton { color: "transparent" implicitHeight: 20 implicitWidth: 20 - radius: JamiTheme.settingsBoxRadius + radius: 10 z: 1 border { @@ -116,7 +116,7 @@ RadioButton { anchors.verticalCenter: parent.verticalCenter color: checkedColor height: 12 - radius: JamiTheme.settingsBoxRadius + radius: 10 visible: checked || hovered width: 12 diff --git a/src/app/constant/JamiStrings.qml b/src/app/constant/JamiStrings.qml index 11b8c371fb0ba604887c41785cad59b02d3dfc00..251adc7b02dfe806dcd940a5f0d80b5a7bacb18e 100644 --- a/src/app/constant/JamiStrings.qml +++ b/src/app/constant/JamiStrings.qml @@ -483,6 +483,7 @@ Item { // DeviceItemDelegate property string saveNewDeviceName: qsTr("Save") property string editDeviceName: qsTr("Edit") + property string deviceName: qsTr("Device name:") property string unlinkDevice: qsTr("Remove") property string deviceId: qsTr("Device Id") diff --git a/src/app/constant/JamiTheme.qml b/src/app/constant/JamiTheme.qml index fed95ed09c681670765c4c32af8b86abebb3bed9..2974c9918539fb295ecabd23411e2b85d4a2b566 100644 --- a/src/app/constant/JamiTheme.qml +++ b/src/app/constant/JamiTheme.qml @@ -608,7 +608,7 @@ Item { property int settingsDescriptionPixelSize: calcSize(15) property int settingsCategorySpacing: 15 property int settingsCategoryAudioVideoSpacing: 6 - property int settingsBoxRadius: 10 + property int settingsBoxRadius: 5 property int settingsBlockSpacing: 40 property int settingsMenuChildrenButtonHeight: 30 property int settingsMenuHeaderButtonHeight: 50 diff --git a/src/app/settingsview/components/LinkedDevicesBase.qml b/src/app/settingsview/components/LinkedDevicesBase.qml index 39edd58382aec710495d06592da4fa7ae38166b6..1f6a1824de8507aabede5e7791799df8db07b4da 100644 --- a/src/app/settingsview/components/LinkedDevicesBase.qml +++ b/src/app/settingsview/components/LinkedDevicesBase.qml @@ -107,7 +107,7 @@ ColumnLayout { Layout.fillWidth: true implicitWidth: root.width height: 70 - deviceName: root.isCurrent ? DeviceName : "Device name: " + DeviceName + deviceName: root.isCurrent ? DeviceName : JamiStrings.deviceName + " " + DeviceName deviceId: DeviceID onBtnRemoveDeviceClicked: removeDeviceSlot(index) isCurrent: root.isCurrent