This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new 55ce4bc87a CTRL-V (Paste) pastes a transform twice, fixes #6438 (#6481)
55ce4bc87a is described below
commit 55ce4bc87a8153149e5f0a7e9fdcbb0627dc3c66
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Sat Jan 31 11:35:08 2026 +0100
CTRL-V (Paste) pastes a transform twice, fixes #6438 (#6481)
---
ui/src/main/java/org/apache/hop/ui/hopgui/HopGuiKeyHandler.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/src/main/java/org/apache/hop/ui/hopgui/HopGuiKeyHandler.java
b/ui/src/main/java/org/apache/hop/ui/hopgui/HopGuiKeyHandler.java
index 2498f3efc1..c202228f1e 100644
--- a/ui/src/main/java/org/apache/hop/ui/hopgui/HopGuiKeyHandler.java
+++ b/ui/src/main/java/org/apache/hop/ui/hopgui/HopGuiKeyHandler.java
@@ -156,7 +156,7 @@ public class HopGuiKeyHandler extends KeyAdapter {
Method method = parentClass.getMethod(shortcut.getParentMethodName());
if (method != null) {
method.invoke(parentObject);
- // return true; // disable for now until we can clean this up
+ return true;
}
} catch (Exception ex) {
LogChannel.UI.logError(