diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2020-04-26 22:19:48 -0500 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2020-04-26 22:19:48 -0500 |
commit | 53e71957f8823e793d2bd98cf23589774e65209a (patch) | |
tree | 28bd8d0104e8272af5f12bec8418078d34da8c1b | |
parent | 40d0d0f829827793c5360c4e857777df2d84f32c (diff) |
fix a long line
-rw-r--r-- | dwl.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -697,7 +697,8 @@ motionnotify(uint32_t time) return; } else if (cursor_mode == CurResize) { resize(grabc, grabc->geom.x, grabc->geom.y, - cursor->x - grabc->geom.x, cursor->y - grabc->geom.y, 1); + cursor->x - grabc->geom.x, + cursor->y - grabc->geom.y, 1); return; } |