| 657 | // ReSharper restore CppInconsistentNaming |
| 658 | |
| 659 | bool is_any_timer_active() { |
| 660 | if (edit_recheck_timer && edit_recheck_timer->is_set()) |
| 661 | return true; |
| 662 | |
| 663 | if (scroll_recheck_timer && scroll_recheck_timer->is_set()) |
| 664 | return true; |
| 665 | |
| 666 | return false; |
| 667 | } |
| 668 | |
| 669 | // For now doesn't look like there is such a need in check modified, but code |
| 670 | // stays until thorough testing |
no test coverage detected