Introduction
Introduction Statistics Contact Development Disclaimer Help
selection: fix view to match actual selection on first cell - st - my customize…
git clone git://git.codemadness.org/st
Log
Files
Refs
README
LICENSE
---
commit f1546cf9c1f9fc52d26dbbcf73210901e83c7ecf
parent 21367a040f056f6a207fafa066bd1cb2d9cae586
Author: Avi Halachmi (:avih) <[email protected]>
Date: Wed, 10 Apr 2019 01:54:43 +0300
selection: fix view to match actual selection on first cell
Diffstat:
M st.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/st.c b/st.c
@@ -458,7 +458,7 @@ selextend(int col, int row, int type, int done)
selnormalize();
sel.type = type;
- if (oldey != sel.oe.y || oldex != sel.oe.x || oldtype != sel.type)
+ if (oldey != sel.oe.y || oldex != sel.oe.x || oldtype != sel.type || s…
tsetdirt(MIN(sel.nb.y, oldsby), MAX(sel.ne.y, oldsey));
sel.mode = done ? SEL_IDLE : SEL_READY;
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.