aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index b624f88e..d309e23c 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -130,6 +130,8 @@ pub struct DebugConfig {
pub animation_slowdown: f64,
#[knuffel(child)]
pub screen_cast_in_non_session_instances: bool,
+ #[knuffel(child)]
+ pub wait_for_frame_completion_before_queueing: bool,
}
impl Default for DebugConfig {
@@ -137,6 +139,7 @@ impl Default for DebugConfig {
Self {
animation_slowdown: 1.,
screen_cast_in_non_session_instances: false,
+ wait_for_frame_completion_before_queueing: false,
}
}
}