diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-11-19 22:32:39 +0100 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-11-19 22:32:39 +0100 |
commit | 81a048d6cfda84a06353911130fee029df077c8d (patch) | |
tree | 8e594117ee91a52bd6c6809fafe463b57b9f844f /st.c | |
parent | b61afd24be566d8c8d7d5310fdad973441139428 (diff) | |
download | st-81a048d6cfda84a06353911130fee029df077c8d.tar.gz st-81a048d6cfda84a06353911130fee029df077c8d.zip |
clean comment regarding redrawing in bmotion().
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -522,7 +522,9 @@ static void brelease(XEvent *e) { | |||
522 | static void bmotion(XEvent *e) { | 522 | static 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 | ||