This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efl.
View the commit online.
commit 3ce525be320dfb1b37c288e336061436f7fd566c
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon Dec 9 10:36:33 2024 +0000
elm - entry - fix typo in signal name for paste request
@fix
---
src/lib/elementary/elm_entry.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/lib/elementary/elm_entry.c b/src/lib/elementary/elm_entry.c
index 19ccd0808d..24f1af05b7 100644
--- a/src/lib/elementary/elm_entry.c
+++ b/src/lib/elementary/elm_entry.c
@@ -2443,7 +2443,8 @@ _entry_paste_request_signal_cb(void *data,
ELM_ENTRY_DATA_GET(data, sd);
if (!sd) return;
- Elm_Sel_Type type = (emission[sizeof("ntry,paste,request,")] == '1') ?
+ // check if its "entry,paste,request,1" or not
+ Elm_Sel_Type type = (emission[sizeof("entry,paste,request,")] == '1') ?
ELM_SEL_TYPE_PRIMARY : ELM_SEL_TYPE_CLIPBOARD;
if (!sd->editable) return;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.