From 1963aaa7755759442a2d25fffdc5af0938bf7c78 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Wed, 20 Sep 2023 09:28:23 +0400 Subject: Add initial impl of org.gnome.Shell.Screenshot Enough to make the portal all-outputs screenshot work. With this, Flameshot kinda-works. --- src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/config.rs') diff --git a/src/config.rs b/src/config.rs index 742481c8..50ea2451 100644 --- a/src/config.rs +++ b/src/config.rs @@ -136,7 +136,7 @@ pub struct DebugConfig { #[knuffel(child, unwrap(argument), default = 1.)] pub animation_slowdown: f64, #[knuffel(child)] - pub screen_cast_in_non_session_instances: bool, + pub dbus_interfaces_in_non_session_instances: bool, #[knuffel(child)] pub wait_for_frame_completion_before_queueing: bool, #[knuffel(child)] @@ -149,7 +149,7 @@ impl Default for DebugConfig { fn default() -> Self { Self { animation_slowdown: 1., - screen_cast_in_non_session_instances: false, + dbus_interfaces_in_non_session_instances: false, wait_for_frame_completion_before_queueing: false, enable_color_transformations_capability: false, enable_overlay_planes: false, -- cgit