x11-misc/rofi-rbw: fix for wtype

This commit is contained in:
odrling 2024-05-02 08:58:02 +02:00
parent 33e67f093b
commit 6a64148f84
No known key found for this signature in database
GPG key ID: EC907F69A27A90C5
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
From 7d7b1a0b0c58eab81daf734f03a7469a07ea4171 Mon Sep 17 00:00:00 2001
From: odrling <florianbadie@odrling.xyz>
Date: Thu, 2 May 2024 08:53:35 +0200
Subject: [PATCH] fix invalid delay for wtype
---
src/rofi_rbw/argument_parsing.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/rofi_rbw/argument_parsing.py b/src/rofi_rbw/argument_parsing.py
index d484676..bb0b190 100644
--- a/src/rofi_rbw/argument_parsing.py
+++ b/src/rofi_rbw/argument_parsing.py
@@ -109,7 +109,7 @@ def parse_arguments() -> argparse.Namespace:
dest="key_delay",
action="store",
type=int,
- default=0,
+ default=1,
help="Set the delay between key presses when typing.",
)
--
2.45.0

View file

@ -24,3 +24,5 @@ RDEPEND="
dev-python/ConfigArgParse[${PYTHON_USEDEP}]
')
"
PATCHES=( "${FILESDIR}/1.4.1-fix-invalid-delay-for-wtype.patch" )