Make scrollbar content detection cheaper
Remove scrollbars from multibuffers co-authored-by: max <max@zed.dev>
This commit is contained in:
parent
9e46b17149
commit
8669dcdc81
4 changed files with 65 additions and 49 deletions
|
@ -2841,6 +2841,15 @@ impl MultiBufferSnapshot {
|
|||
})
|
||||
}
|
||||
|
||||
pub fn has_git_diffs(&self) -> bool {
|
||||
for excerpt in self.excerpts.iter() {
|
||||
if !excerpt.buffer.git_diff.is_empty() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
false
|
||||
}
|
||||
|
||||
pub fn git_diff_hunks_in_range_rev<'a>(
|
||||
&'a self,
|
||||
row_range: Range<u32>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue