From e90e241e5f97b0aa0c56358ac76f016b637a2b2e Mon Sep 17 00:00:00 2001 From: smbody-mipt Date: Wed, 14 Feb 2024 12:19:34 +0100 Subject: [PATCH] stop drilldown on byte vectors - more useful as copy on double-click, same as strings --- src/studio/ui/QGrid.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/studio/ui/QGrid.java b/src/studio/ui/QGrid.java index 8ab9efd8..ff11df97 100755 --- a/src/studio/ui/QGrid.java +++ b/src/studio/ui/QGrid.java @@ -242,7 +242,8 @@ private void copy(int row, int col) { int type = b.getType(); if ( (type >= -19 && type <= -1) || (type >= 101 && type <= 103 ) || - type == 10 ) { + type == 10 || + type == 4) { //@TODO: we shouldn't duplicate the logic here. KFormatContext formatContextForCell = new KFormatContext(formatContext);