aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2013-05-26 16:10:22 +0200
committerChristoph Lohmann <20h@r-36.net>2013-05-26 16:10:22 +0200
commitb5144100a59956b5bf69614a077bd4d252d7dc6c (patch)
tree661b2729a418566faa03ec42cf9269dd1508164d /st.c
parent8f1bef05025c0052603f7ca30552a43395b4c13f (diff)
downloadst-b5144100a59956b5bf69614a077bd4d252d7dc6c.tar.gz
Fixing the selection in a single line again.
Thanks p37sitdu@lavabit.com!
Diffstat (limited to 'st.c')
-rw-r--r--st.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/st.c b/st.c
index 826f745..2eb007b 100644
--- a/st.c
+++ b/st.c
@@ -667,16 +667,21 @@ y2row(int y) {
static void
selsort(void) {
- sel.nb.x = sel.ob.y < sel.oe.y ? sel.ob.x : sel.oe.x;
+ if(sel.ob.y == sel.oe.y) {
+ sel.nb.x = MIN(sel.ob.x, sel.oe.x);
+ sel.ne.x = MAX(sel.ob.x, sel.oe.x);
+ } else {
+ sel.nb.x = sel.ob.y < sel.oe.y ? sel.ob.x : sel.oe.x;
+ sel.ne.x = sel.ob.y < sel.oe.y ? sel.oe.x : sel.ob.x;
+ }
sel.nb.y = MIN(sel.ob.y, sel.oe.y);
- sel.ne.x = sel.ob.y < sel.oe.y ? sel.oe.x : sel.ob.x;
sel.ne.y = MAX(sel.ob.y, sel.oe.y);
}
static inline bool
selected(int x, int y) {
if(sel.ne.y == y && sel.nb.y == y)
- return BETWEEN(x, sel.nb.x, sel.ne.y);
+ return BETWEEN(x, sel.nb.x, sel.ne.x);
if(sel.type == SEL_RECTANGULAR) {
return ((sel.nb.y <= y && y <= sel.ne.y)
remember that computers suck.