diff --git a/.syncexclude b/.syncexclude index a6ab4e8a..d5b890cc 100644 --- a/.syncexclude +++ b/.syncexclude @@ -1,2 +1,12 @@ +# Paths that will be exclude from synchronize workflow +# Please use relative path which use project directory as root +# Notice that +# * .git +# * debian +# * archlinux +# * .obs +# * .github +# are always ignored linglong.yaml VERSION +CHANGELOG.md diff --git a/qt6/src/qml/CheckBox.qml b/qt6/src/qml/CheckBox.qml index ddc1b085..ded3d281 100644 --- a/qt6/src/qml/CheckBox.qml +++ b/qt6/src/qml/CheckBox.qml @@ -25,6 +25,7 @@ T.CheckBox { opacity: D.ColorSelector.controlState === D.DTK.DisabledState ? 0.4 : 1 D.DciIcon.mode: D.ColorSelector.controlState D.DciIcon.theme: D.ColorSelector.controlTheme + focusPolicy: Qt.TabFocus indicator: Item { x: control.text ? (!control.mirrored ? control.leftPadding : control.width - width - control.rightPadding) : control.leftPadding + (control.availableWidth - width) / 2 y: control.topPadding + (control.availableHeight - height) / 2 diff --git a/qt6/src/qml/RadioButton.qml b/qt6/src/qml/RadioButton.qml index 35cb72c0..c1bffb8f 100644 --- a/qt6/src/qml/RadioButton.qml +++ b/qt6/src/qml/RadioButton.qml @@ -20,6 +20,7 @@ T.RadioButton { opacity: D.ColorSelector.controlState === D.DTK.DisabledState ? 0.4 : 1 D.DciIcon.mode: D.ColorSelector.controlState D.DciIcon.theme: D.ColorSelector.controlTheme + focusPolicy: Qt.TabFocus icon { width: DS.Style.radioButton.iconSize height: DS.Style.radioButton.iconSize diff --git a/src/icons/bloom/checkbox_checked.dci b/src/icons/bloom/checkbox_checked.dci index de394945..bae6718e 100644 Binary files a/src/icons/bloom/checkbox_checked.dci and b/src/icons/bloom/checkbox_checked.dci differ diff --git a/src/icons/bloom/checkbox_unchecked.dci b/src/icons/bloom/checkbox_unchecked.dci index 413e4145..e68eed24 100644 Binary files a/src/icons/bloom/checkbox_unchecked.dci and b/src/icons/bloom/checkbox_unchecked.dci differ diff --git a/src/icons/bloom/radio_checked.dci b/src/icons/bloom/radio_checked.dci index 69df89f3..1075ebd3 100644 Binary files a/src/icons/bloom/radio_checked.dci and b/src/icons/bloom/radio_checked.dci differ diff --git a/src/icons/bloom/radio_unchecked.dci b/src/icons/bloom/radio_unchecked.dci index 792ce8ec..641029d6 100644 Binary files a/src/icons/bloom/radio_unchecked.dci and b/src/icons/bloom/radio_unchecked.dci differ