Skip to content

Commit

Permalink
stop drilldown on byte vectors - more useful as copy on double-click,…
Browse files Browse the repository at this point in the history
… same as strings
  • Loading branch information
smbody-mipt committed Feb 14, 2024
1 parent b40febb commit e90e241
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/studio/ui/QGrid.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e90e241

Please sign in to comment.