mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-04-22 06:02:03 +02:00
materialradiobutton: update radius
Change-Id: I00feb393feeb1c7e17dccfd75209b00de6e75e4f GitLab: #1241
This commit is contained in:
parent
d2eed3af64
commit
df9c4b0653
4 changed files with 5 additions and 4 deletions
|
@ -102,7 +102,7 @@ RadioButton {
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
implicitHeight: 20
|
implicitHeight: 20
|
||||||
implicitWidth: 20
|
implicitWidth: 20
|
||||||
radius: JamiTheme.settingsBoxRadius
|
radius: 10
|
||||||
z: 1
|
z: 1
|
||||||
|
|
||||||
border {
|
border {
|
||||||
|
@ -116,7 +116,7 @@ RadioButton {
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
color: checkedColor
|
color: checkedColor
|
||||||
height: 12
|
height: 12
|
||||||
radius: JamiTheme.settingsBoxRadius
|
radius: 10
|
||||||
visible: checked || hovered
|
visible: checked || hovered
|
||||||
width: 12
|
width: 12
|
||||||
|
|
||||||
|
|
|
@ -483,6 +483,7 @@ Item {
|
||||||
// DeviceItemDelegate
|
// DeviceItemDelegate
|
||||||
property string saveNewDeviceName: qsTr("Save")
|
property string saveNewDeviceName: qsTr("Save")
|
||||||
property string editDeviceName: qsTr("Edit")
|
property string editDeviceName: qsTr("Edit")
|
||||||
|
property string deviceName: qsTr("Device name:")
|
||||||
property string unlinkDevice: qsTr("Remove")
|
property string unlinkDevice: qsTr("Remove")
|
||||||
property string deviceId: qsTr("Device Id")
|
property string deviceId: qsTr("Device Id")
|
||||||
|
|
||||||
|
|
|
@ -608,7 +608,7 @@ Item {
|
||||||
property int settingsDescriptionPixelSize: calcSize(15)
|
property int settingsDescriptionPixelSize: calcSize(15)
|
||||||
property int settingsCategorySpacing: 15
|
property int settingsCategorySpacing: 15
|
||||||
property int settingsCategoryAudioVideoSpacing: 6
|
property int settingsCategoryAudioVideoSpacing: 6
|
||||||
property int settingsBoxRadius: 10
|
property int settingsBoxRadius: 5
|
||||||
property int settingsBlockSpacing: 40
|
property int settingsBlockSpacing: 40
|
||||||
property int settingsMenuChildrenButtonHeight: 30
|
property int settingsMenuChildrenButtonHeight: 30
|
||||||
property int settingsMenuHeaderButtonHeight: 50
|
property int settingsMenuHeaderButtonHeight: 50
|
||||||
|
|
|
@ -107,7 +107,7 @@ ColumnLayout {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
implicitWidth: root.width
|
implicitWidth: root.width
|
||||||
height: 70
|
height: 70
|
||||||
deviceName: root.isCurrent ? DeviceName : "Device name: " + DeviceName
|
deviceName: root.isCurrent ? DeviceName : JamiStrings.deviceName + " " + DeviceName
|
||||||
deviceId: DeviceID
|
deviceId: DeviceID
|
||||||
onBtnRemoveDeviceClicked: removeDeviceSlot(index)
|
onBtnRemoveDeviceClicked: removeDeviceSlot(index)
|
||||||
isCurrent: root.isCurrent
|
isCurrent: root.isCurrent
|
||||||
|
|
Loading…
Add table
Reference in a new issue