aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAurélien Aptel2010-11-19 22:32:39 +0100
committerAurélien Aptel2010-11-19 22:32:39 +0100
commit6c24ecb3fc0d882b5fb11df70994fc41e70f90f8 (patch)
treee048177889e1950a9f6bd4ae6e8424c0c9f4ea57
parent642814de8df8bbf75ec9872e2e451d8ae5efdda0 (diff)
downloadaur-6c24ecb3fc0d882b5fb11df70994fc41e70f90f8.tar.gz
clean comment regarding redrawing in bmotion().
-rw-r--r--st.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/st.c b/st.c
index bed7e8d007d2..38c8658b9294 100644
--- a/st.c
+++ b/st.c
@@ -522,7 +522,9 @@ static void brelease(XEvent *e) {
static void bmotion(XEvent *e) {
if (sel.mode) {
getbuttoninfo(e, NULL, &sel.ex, &sel.ey);
- // draw(1);
+ /* XXX: draw() can't keep up, disabled for now.
+ selection is visible on button release.
+ draw(1); */
}
}