Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/core/engine/accessors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,16 @@ impl Engine {
/// behaviour on modal state — e.g. GTK suppresses the LSP hover
/// trigger and hides native scrollbar widgets when this returns
/// true.
///
/// #731 (vimcode): both GTK call sites were inside dead code deleted
/// by that issue (`App::tick`'s hover-polling block and the
/// `sync_scrollbar`/`sync_scrollbar_positions` native-widget path) —
/// both were already gated on Relm4-era widget handles permanently
/// `None` under the ShellApp runner, so this had no live caller before
/// the deletion either. Kept `pub` (not deleted) because it is
/// documented, generically useful core API that the hover-polling
/// restoration work #731 flags as follow-up will need again.
#[allow(dead_code)]
pub fn is_blocking_modal_open(&self) -> bool {
self.picker_open
|| self.tab_switcher_open
Expand Down
Loading
Loading