diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-14 15:53:20 -0400 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-14 15:53:20 -0400 |
commit | 624399da9992b92f59daef4a79575c338e989e3e (patch) | |
tree | e45db1f1ab1a7ec5fc20617c07a253d286518ba0 /find.c | |
parent | 72592df32eddeb11ebdbb61a1c2437d82eb2f73b (diff) |
fix find menu scroll bug, for real this time
Diffstat (limited to 'find.c')
-rw-r--r-- | find.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -155,7 +155,7 @@ static void find_update(Ted *ted, bool force) { find_buffer->modified = false; if (best_scroll_candidate.line != U32_MAX) // scroll to first match (if there is one) buffer_scroll_to_pos(buffer, best_scroll_candidate); - } else { + } else if (find_buffer->modified) { buffer_scroll_to_cursor(buffer); } } |