selection: fix view to match actual selection on first cell - st - Personal fork of st
 (HTM) git clone git://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit f1546cf9c1f9fc52d26dbbcf73210901e83c7ecf
 (DIR) parent 21367a040f056f6a207fafa066bd1cb2d9cae586
 (HTM) Author: Avi Halachmi (:avih) <avihpit@yahoo.com>
       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(-)
       ---
 (DIR) 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 || sel.mode == SEL_EMPTY)
                        tsetdirt(MIN(sel.nb.y, oldsby), MAX(sel.ne.y, oldsey));
        
                sel.mode = done ? SEL_IDLE : SEL_READY;