From 7dc015e16b30be457a227601de85f085e5af1dda Mon Sep 17 00:00:00 2001 From: nyx Date: Sat, 29 Mar 2025 03:40:21 -0400 Subject: screenshot: make selection area modifiable via move/resize keybinds (#1279) * screenshot: make selection area modifiable via keybinds * input: run fmt * Reimplement screenshot UI binds in a better way --------- Co-authored-by: Ivan Molodetskikh --- src/layout/floating.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/layout') diff --git a/src/layout/floating.rs b/src/layout/floating.rs index 4fd7c7ee..a88e5bf4 100644 --- a/src/layout/floating.rs +++ b/src/layout/floating.rs @@ -26,7 +26,7 @@ use crate::utils::{ use crate::window::ResolvedWindowRules; /// By how many logical pixels the directional move commands move floating windows. -const DIRECTIONAL_MOVE_PX: f64 = 50.; +pub const DIRECTIONAL_MOVE_PX: f64 = 50.; /// Space for floating windows. #[derive(Debug)] -- cgit