diff options
author | Ori Bernstein <ori@eigenstate.org> | 2020-04-25 15:18:04 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2020-04-25 15:18:04 -0700 |
commit | 60c34ebb2da2b9716169ae4e6db4816d02c28910 (patch) | |
tree | 068829c43c50fd7a7a489cebb11bf8706325741d /sys/src/cmd/acme/dat.h | |
parent | 7feab4dc5913c8d072d57e9cc7cc7b3815037fe8 (diff) |
tweak selection criteria
grow selection from point of click, not start of selection region.
starting at the beginning of the selection region causes the match
logic to kick in, which is confusing.
Diffstat (limited to 'sys/src/cmd/acme/dat.h')
-rw-r--r-- | sys/src/cmd/acme/dat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/acme/dat.h b/sys/src/cmd/acme/dat.h index 9e8fe26ec..100488c64 100644 --- a/sys/src/cmd/acme/dat.h +++ b/sys/src/cmd/acme/dat.h @@ -203,7 +203,7 @@ void textcolumnate(Text*, Dirlist**, int); void textcommit(Text*, int); void textconstrain(Text*, uint, uint, uint*, uint*); void textdelete(Text*, uint, uint, int); -void textstretchsel(Text*, uint*, uint*, int); +void textstretchsel(Text*, uint, uint*, uint*, int); void textfill(Text*); void textframescroll(Text*, int); void textinit(Text*, File*, Rectangle, Reffont*, Image**); |