From 5b46be904e3be2a4b74c3420957ccc4b466f1917 Mon Sep 17 00:00:00 2001 From: Kirottu Date: Tue, 4 Jul 2023 19:58:17 +0300 Subject: [PATCH] Replaced `Relative` with `Fraction` in example config --- examples/config.ron | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/config.ron b/examples/config.ron index c518604..145be44 100644 --- a/examples/config.ron +++ b/examples/config.ron @@ -4,7 +4,7 @@ Config( // Fraction(n): A fraction of the width or height of the full screen (depends on exclusive zones and the settings related to them) window respectively // The horizontal position, adjusted so that Relative(0.5) always centers the runner - x: Relative(0.5), + x: Fraction(0.5), // The vertical position, works the same as `x` y: Absolute(0),