mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-12 19:11:23 +03:00
Show scrollbar even when buffer search highlights are outside viewport
This commit is contained in:
parent
1d98132eed
commit
f0afa3f9e3
@ -8448,6 +8448,12 @@ impl Editor {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn has_background_highlights<T: 'static>(&self) -> bool {
|
||||||
|
self.background_highlights
|
||||||
|
.get(&TypeId::of::<T>())
|
||||||
|
.map_or(false, |(_, highlights)| !highlights.is_empty())
|
||||||
|
}
|
||||||
|
|
||||||
pub fn background_highlights_in_range(
|
pub fn background_highlights_in_range(
|
||||||
&self,
|
&self,
|
||||||
search_range: Range<Anchor>,
|
search_range: Range<Anchor>,
|
||||||
|
@ -8,6 +8,7 @@ use crate::{
|
|||||||
hover_popover::{
|
hover_popover::{
|
||||||
self, hover_at, HOVER_POPOVER_GAP, MIN_POPOVER_CHARACTER_WIDTH, MIN_POPOVER_LINE_HEIGHT,
|
self, hover_at, HOVER_POPOVER_GAP, MIN_POPOVER_CHARACTER_WIDTH, MIN_POPOVER_LINE_HEIGHT,
|
||||||
},
|
},
|
||||||
|
items::BufferSearchHighlights,
|
||||||
link_go_to_definition::{
|
link_go_to_definition::{
|
||||||
go_to_fetched_definition, go_to_fetched_type_definition, show_link_definition,
|
go_to_fetched_definition, go_to_fetched_type_definition, show_link_definition,
|
||||||
update_go_to_definition_link, update_inlay_link_and_hover_points, GoToDefinitionTrigger,
|
update_go_to_definition_link, update_inlay_link_and_hover_points, GoToDefinitionTrigger,
|
||||||
@ -1275,7 +1276,7 @@ impl EditorElement {
|
|||||||
let background_ranges = self
|
let background_ranges = self
|
||||||
.editor
|
.editor
|
||||||
.read(cx)
|
.read(cx)
|
||||||
.background_highlight_row_ranges::<crate::items::BufferSearchHighlights>(
|
.background_highlight_row_ranges::<BufferSearchHighlights>(
|
||||||
start_anchor..end_anchor,
|
start_anchor..end_anchor,
|
||||||
&layout.position_map.snapshot,
|
&layout.position_map.snapshot,
|
||||||
50000,
|
50000,
|
||||||
@ -1966,7 +1967,7 @@ impl EditorElement {
|
|||||||
(is_singleton && scrollbar_settings.git_diff && snapshot.buffer_snapshot.has_git_diffs())
|
(is_singleton && scrollbar_settings.git_diff && snapshot.buffer_snapshot.has_git_diffs())
|
||||||
||
|
||
|
||||||
// Selections
|
// Selections
|
||||||
(is_singleton && scrollbar_settings.selections && !highlighted_ranges.is_empty())
|
(is_singleton && scrollbar_settings.selections && editor.has_background_highlights::<BufferSearchHighlights>())
|
||||||
// Scrollmanager
|
// Scrollmanager
|
||||||
|| editor.scroll_manager.scrollbars_visible()
|
|| editor.scroll_manager.scrollbars_visible()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user