aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2010-11-19 22:32:39 +0100
committerAurélien Aptel <aurelien.aptel@gmail.com>2010-11-19 22:32:39 +0100
commit58a650f089a7898724d6a79a3dc2c8bb6d9eb714 (patch)
tree8e594117ee91a52bd6c6809fafe463b57b9f844f
parente417230f3818c84306ee7bd29772d857f76701d4 (diff)
downloadst-58a650f089a7898724d6a79a3dc2c8bb6d9eb714.tar.gz
st-58a650f089a7898724d6a79a3dc2c8bb6d9eb714.tar.bz2
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 bed7e8d..38c8658 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); */
}
}