Skip to content

Commit 31511bb

Browse files
committed
#2047 allow empty text in Text action.
1 parent e8c4f00 commit 31511bb

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [4.0.5](https://github.com/sds100/KeyMapper/releases/tag/v4.0.5)
2+
3+
#### TO BE RELEASED
4+
5+
## Fixed
6+
7+
- #2047 allow empty text in Text action.
8+
19
## [4.0.4](https://github.com/sds100/KeyMapper/releases/tag/v4.0.4)
210

311
#### 21 February 2026

base/src/main/java/io/github/sds100/keymapper/base/actions/CreateActionDelegate.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ class CreateActionDelegate(
843843
"create_text_action",
844844
DialogModel.Text(
845845
hint = getString(R.string.hint_create_text_action),
846-
allowEmpty = false,
846+
allowEmpty = true,
847847
text = oldText,
848848
),
849849
) ?: return null

0 commit comments

Comments
 (0)