diff --git a/docs/labwc-config.5.scd b/docs/labwc-config.5.scd index d0700ac7..0042aa8d 100644 --- a/docs/labwc-config.5.scd +++ b/docs/labwc-config.5.scd @@ -409,7 +409,7 @@ extending outward from the snapped edge. If an interactive move ends with the cursor a maximum distance *range*, (in pixels) from the edge of an output, the move will trigger a SnapToEdge action for that edge. A *range* of 0 disables snapping via - interactive moves. Default is 1. + interactive moves. Default is 10. ** [yes|no] Show an overlay when snapping to a window to an edge. Default is yes. diff --git a/docs/rc.xml.all b/docs/rc.xml.all index dd58c71e..8dea2ec3 100644 --- a/docs/rc.xml.all +++ b/docs/rc.xml.all @@ -151,7 +151,7 @@ - 1 + 10 diff --git a/src/config/rcxml.c b/src/config/rcxml.c index a3b3ee3a..f8e6dc9b 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -1486,7 +1486,7 @@ rcxml_init(void) rc.unsnap_threshold = 20; rc.unmaximize_threshold = 150; - rc.snap_edge_range = 1; + rc.snap_edge_range = 10; rc.snap_overlay_enabled = true; rc.snap_overlay_delay_inner = 500; rc.snap_overlay_delay_outer = 500;