aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/st.c b/st.c
index bed7e8d..38c8658 100644
--- a/st.c
+++ b/st.c
@@ -522,7 +522,9 @@ static void brelease(XEvent *e) {
522static void bmotion(XEvent *e) { 522static void bmotion(XEvent *e) {
523 if (sel.mode) { 523 if (sel.mode) {
524 getbuttoninfo(e, NULL, &sel.ex, &sel.ey); 524 getbuttoninfo(e, NULL, &sel.ex, &sel.ey);
525 // draw(1); 525 /* XXX: draw() can't keep up, disabled for now.
526 selection is visible on button release.
527 draw(1); */
526 } 528 }
527} 529}
528 530