From a820934a22365974c876397d68674ea89013a102 Mon Sep 17 00:00:00 2001 From: baldurk Date: Fri, 26 Apr 2019 14:02:42 +0100 Subject: [PATCH] Fix description of float controls - maximum decimal places not sigfigs --- docs/window/settings_window.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/window/settings_window.rst b/docs/window/settings_window.rst index bac68f67c..270549330 100644 --- a/docs/window/settings_window.rst +++ b/docs/window/settings_window.rst @@ -38,19 +38,19 @@ Examples: --------------- - | :guilabel:`Maximum significant figures on decimals` Default: ``5`` + | :guilabel:`Maximum decimal places on float values` Default: ``5`` -Defines the smallest number of decimal places to display on a float, padding with 0s. +Defines the largest number of decimal places to display on a float. Examples: * With a value of 5, ``0.123456789`` will be displayed as *0.12346* -* With a value of 5, ``1.0`` will be displayed as *1.00* +* With a value of 5, ``1.0`` will be displayed as *1.00* depending on the above minimum * With a value of 10, ``0.123456789`` will be displayed as *0.123456789* -* With a value of 10, ``1.0`` will be displayed as *1.00* +* With a value of 10, ``1.0`` will be displayed as *1.00* depending on the above minimum ---------------