Skip to content

Commit db185b4

Browse files
authored
feat: update backspace button position to be more consistent (#275)
Refs: #274
1 parent d3c7558 commit db185b4

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
- Updated French AZERTY layout ([#134])
1818
- Updated Spanish layout ([#206])
1919
- Updated Italian layout ([#251])
20+
- Updated backspace button position in number layout for better accessibility ([#274])
2021

2122
### Fixed
2223
- Keyboard language management dialog now respects `Use English language` preference ([#238])
@@ -102,6 +103,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
102103
[#256]: https://github.com/FossifyOrg/Keyboard/issues/256
103104
[#259]: https://github.com/FossifyOrg/Keyboard/issues/259
104105
[#265]: https://github.com/FossifyOrg/Keyboard/issues/265
106+
[#274]: https://github.com/FossifyOrg/Keyboard/issues/274
105107

106108
[Unreleased]: https://github.com/FossifyOrg/Keyboard/compare/1.4.0...HEAD
107109
[1.4.0]: https://github.com/FossifyOrg/Keyboard/compare/1.3.0...1.4.0

app/src/main/res/xml/keys_numbers.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
app:keyLabel="3"
1313
app:keyWidth="25%p" />
1414
<Key
15-
app:code="-5"
16-
app:isRepeatable="true"
1715
app:keyEdgeFlags="right"
18-
app:keyIcon="@drawable/ic_clear_vector"
16+
app:keyLabel="-"
1917
app:keyWidth="25%p" />
2018
</Row>
2119
<Row>
@@ -30,8 +28,9 @@
3028
app:keyLabel="6"
3129
app:keyWidth="25%p" />
3230
<Key
31+
app:code="32"
3332
app:keyEdgeFlags="right"
34-
app:keyLabel="-"
33+
app:keyLabel=""
3534
app:keyWidth="25%p" />
3635
</Row>
3736
<Row>
@@ -46,9 +45,10 @@
4645
app:keyLabel="9"
4746
app:keyWidth="25%p" />
4847
<Key
49-
app:code="32"
48+
app:code="-5"
49+
app:isRepeatable="true"
5050
app:keyEdgeFlags="right"
51-
app:keyLabel=""
51+
app:keyIcon="@drawable/ic_clear_vector"
5252
app:keyWidth="25%p" />
5353
</Row>
5454
<Row>

app/src/main/res/xml/keys_phone.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
app:keyLabel="3"
1313
app:keyWidth="25%p" />
1414
<Key
15-
app:code="-5"
16-
app:isRepeatable="true"
1715
app:keyEdgeFlags="right"
18-
app:keyIcon="@drawable/ic_clear_vector"
16+
app:keyLabel="-"
1917
app:keyWidth="25%p" />
2018
</Row>
2119
<Row>
@@ -30,8 +28,9 @@
3028
app:keyLabel="6"
3129
app:keyWidth="25%p" />
3230
<Key
31+
app:code="32"
3332
app:keyEdgeFlags="right"
34-
app:keyLabel="-"
33+
app:keyLabel=""
3534
app:keyWidth="25%p" />
3635
</Row>
3736
<Row>
@@ -46,9 +45,10 @@
4645
app:keyLabel="9"
4746
app:keyWidth="25%p" />
4847
<Key
49-
app:code="32"
48+
app:code="-5"
49+
app:isRepeatable="true"
5050
app:keyEdgeFlags="right"
51-
app:keyLabel=""
51+
app:keyIcon="@drawable/ic_clear_vector"
5252
app:keyWidth="25%p" />
5353
</Row>
5454
<Row>

0 commit comments

Comments
 (0)