Skip to content

Commit 03b43b6

Browse files
committed
feat: rename tap screen actions inside key maps
1 parent fd1e993 commit 03b43b6

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- #699 Time constraints ⏰
88

9+
## Changed
10+
11+
- Rename tap screen actions inside key maps.
12+
913
## [3.0.1](https://github.com/sds100/KeyMapper/releases/tag/v3.0.1)
1014

1115
#### 28 April 2025

app/src/main/java/io/github/sds100/keymapper/actions/ActionUiHelper.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ class ActionUiHelper(
356356
} else {
357357
getString(
358358
R.string.description_tap_coordinate_with_description,
359-
arrayOf(action.x, action.y, action.description),
359+
action.description,
360360
)
361361
}
362362

app/src/main/res/values/strings.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@
9898
<string name="description_keyevent_through_shell">Input %s through shell</string>
9999
<string name="description_keyevent_from_device">Input %s%s from %s</string>
100100
<string name="description_url">Open %s</string>
101-
<string name="description_tap_coordinate_default">Tap coordinates %d, %d</string>
102-
<string name="description_tap_coordinate_with_description">Tap coordinates %d, %d (%s)</string>
101+
<string name="description_tap_coordinate_default">Tap screen (%d, %d)</string>
102+
<string name="description_tap_coordinate_with_description">Tap screen (%s)</string>
103103
<string name="description_swipe_coordinate_default">Swipe with %d finger(s) from coordinates %d/%d to %d/%d in %dms</string>
104104
<string name="description_swipe_coordinate_with_description">Swipe with %d finger(s) from coordinates %d/%d to %d/%d in %dms (%s)</string>
105105
<string name="description_pinch_coordinate_default">%s with %d finger(s) on coordinates %d/%d with a pinch distance of %dpx in %dms</string>

0 commit comments

Comments
 (0)