diff options
author | Johannes Unruh <[email protected]> | 2020-03-28 20:38:47 +0100 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2020-04-07 22:19:33 +0200 |
commit | d92c6f685a8622905d9ca50479cf19454a5959f5 (patch) | |
tree | 965e80a0e3a866496f790df759669666391f8604 /src/math-buttons.c | |
parent | 7c26cb9f33974337992f86696b685d1487629773 (diff) | |
download | mate-calc-d92c6f685a8622905d9ca50479cf19454a5959f5.tar.bz2 mate-calc-d92c6f685a8622905d9ca50479cf19454a5959f5.tar.xz |
math-buttons: add space character after inverse trig. functions
Diffstat (limited to 'src/math-buttons.c')
-rw-r--r-- | src/math-buttons.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math-buttons.c b/src/math-buttons.c index 69e993a..1ab1939 100644 --- a/src/math-buttons.c +++ b/src/math-buttons.c @@ -180,13 +180,13 @@ static ButtonData button_data[] = { {"hyperbolic_tangent", "tanh ", FUNCTION, /* Tooltip for the hyperbolic tangent button */ N_("Hyperbolic Tangent")}, - {"inverse_sine", "asin", FUNCTION, + {"inverse_sine", "asin ", FUNCTION, /* Tooltip for the inverse sine button */ N_("Inverse Sine")}, - {"inverse_cosine", "acos", FUNCTION, + {"inverse_cosine", "acos ", FUNCTION, /* Tooltip for the inverse cosine button */ N_("Inverse Cosine")}, - {"inverse_tangent", "atan", FUNCTION, + {"inverse_tangent", "atan ", FUNCTION, /* Tooltip for the inverse tangent button */ N_("Inverse Tangent")}, {"inverse", "⁻¹", FUNCTION, |