summaryrefslogtreecommitdiff
path: root/sys/src/cmd/samterm
diff options
context:
space:
mode:
authorOri Bernstein <ori@eigenstate.org>2020-04-25 10:43:39 -0700
committerOri Bernstein <ori@eigenstate.org>2020-04-25 10:43:39 -0700
commit2de164c51dc3330859c160b80440e1363fb5b566 (patch)
tree1b29adb88299efdcca44ede060ec5d4756f4542a /sys/src/cmd/samterm
parent5d7e9bee3ce75cce5727c0283a192b344800cc07 (diff)
fix typos in time calculation
the results of the time calculation were garbled -- and apparently negative on my system when testing, so the test passed when it shouldn't have.
Diffstat (limited to 'sys/src/cmd/samterm')
-rw-r--r--sys/src/cmd/samterm/flayer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/src/cmd/samterm/flayer.c b/sys/src/cmd/samterm/flayer.c
index 101effb6e..944fee699 100644
--- a/sys/src/cmd/samterm/flayer.c
+++ b/sys/src/cmd/samterm/flayer.c
@@ -258,7 +258,7 @@ flselect(Flayer *l)
if(l->visible!=All)
flupfront(l);
- dt = l->click = mousep->msec;
+ dt = mousep->msec - l->click;
dx = abs(mousep->xy.x - clickpt.x);
dy = abs(mousep->xy.y - clickpt.y);
@@ -279,7 +279,6 @@ flsetselect(Flayer *l, long p0, long p1)
{
ulong fp0, fp1;
- l->click = 0;
if(l->visible==None || !flprepare(l)){
l->p0 = p0, l->p1 = p1;
return;