Skip to content
Open
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
6 changes: 6 additions & 0 deletions crates/gpui/src/platform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1827,6 +1827,11 @@ pub struct WindowOptions {
/// Leave this `false` for windows that rely on AppKit's native titlebar dragging.
pub app_owns_titlebar_drag: bool,

/// The minimum interval between animation frames while the window is inactive.
///
/// Set to `None` to disable inactive-window animation frame throttling.
pub inactive_frame_interval: Option<Duration>,

/// Whether the window should be resizable by the user
pub is_resizable: bool,

Expand Down Expand Up @@ -1971,6 +1976,7 @@ impl Default for WindowOptions {
kind: WindowKind::Normal,
is_movable: true,
app_owns_titlebar_drag: false,
inactive_frame_interval: Some(Duration::from_micros(33_333)),
is_resizable: true,
is_minimizable: true,
display_id: None,
Expand Down
3 changes: 2 additions & 1 deletion crates/gpui/src/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1513,6 +1513,7 @@ impl Window {
kind,
is_movable,
app_owns_titlebar_drag,
inactive_frame_interval,
is_resizable,
is_minimizable,
display_id,
Expand Down Expand Up @@ -1730,7 +1731,7 @@ impl Window {
{
None
} else if !active.get() && !input_rate_tracker.borrow_mut().is_high_rate() {
Some(Duration::from_micros(33333))
inactive_frame_interval
} else if let Some(ThermalState::Critical | ThermalState::Serious) = thermal_state {
Some(Duration::from_micros(16667))
} else {
Expand Down
Loading