Skip to content

Commit

Permalink
Merge pull request #138 from smbody-mipt/master
Browse files Browse the repository at this point in the history
stop drilldown on byte vectors - more useful as copy on double-click,…
  • Loading branch information
dzmipt authored Feb 15, 2024
2 parents b40febb + e90e241 commit 9239b6d
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 9239b6d

Please sign in to comment.