diff options
author | Victor Kareh <[email protected]> | 2019-01-30 13:06:08 -0500 |
---|---|---|
committer | lukefromdc <[email protected]> | 2019-01-30 20:55:48 +0000 |
commit | 4637b011e388dc489c629ef311a8e644548bd7e1 (patch) | |
tree | a414c214b3745be9b0db2e39525d4063187b755a | |
parent | 187a975d0677111d27ba3c0045e2eaa7b9325e02 (diff) | |
download | mate-calc-4637b011e388dc489c629ef311a8e644548bd7e1.tar.bz2 mate-calc-4637b011e388dc489c629ef311a8e644548bd7e1.tar.xz |
Increase accuracy range to 15
-rw-r--r-- | data/org.mate.calc.gschema.xml.in | 2 | ||||
-rw-r--r-- | data/preferences.ui | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/data/org.mate.calc.gschema.xml.in b/data/org.mate.calc.gschema.xml.in index e0b1792..37295c1 100644 --- a/data/org.mate.calc.gschema.xml.in +++ b/data/org.mate.calc.gschema.xml.in @@ -21,7 +21,7 @@ <schema path="/org/mate/calc/" id="org.mate.calc" gettext-domain="mate-calc"> <key type="i" name="accuracy"> <default>9</default> - <range min="0" max="9"/> + <range min="0" max="15"/> <summary>Accuracy value</summary> <description>The number of digits displayed after the numeric point</description> </key> diff --git a/data/preferences.ui b/data/preferences.ui index 758c67b..56635b4 100644 --- a/data/preferences.ui +++ b/data/preferences.ui @@ -11,7 +11,7 @@ </columns> </object> <object class="GtkAdjustment" id="decimal_places_adjustment"> - <property name="upper">9</property> + <property name="upper">15</property> <property name="step_increment">1</property> <property name="page_increment">1</property> </object> |