diff options
author | Stefan Tauner <[email protected]> | 2012-04-13 01:45:02 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-04-22 19:27:00 +0200 |
commit | 7155e47537e3707d42a675d2603386963c6d9156 (patch) | |
tree | a1b6e49f43b9408f1dbcb83e41b9606c83d19fd0 /src/math-buttons.c | |
parent | 5f32b5b06eed534bf0201266169dcb7e8d833349 (diff) | |
download | mate-calc-7155e47537e3707d42a675d2603386963c6d9156.tar.bz2 mate-calc-7155e47537e3707d42a675d2603386963c6d9156.tar.xz |
Support shifts with keyboard
This patch also changes the shift operation itself to use MPNumber for the
multiplier too. Previously a signed int was used, which led to "interesting" results
for bigger numbers. This was hidden because the GUI did not allow shifts with
more than 15 places.
Signed-off-by: Stefan Tauner <[email protected]>
Diffstat (limited to 'src/math-buttons.c')
-rw-r--r-- | src/math-buttons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math-buttons.c b/src/math-buttons.c index fc13976..19ca08e 100644 --- a/src/math-buttons.c +++ b/src/math-buttons.c @@ -252,10 +252,10 @@ static ButtonData button_data[] = { N_("Undo [Ctrl+Z]")}, {"shift_left", NULL, ACTION, /* Tooltip for the shift left button */ - N_("Shift Left")}, + N_("Shift Left [<<]")}, {"shift_right", NULL, ACTION, /* Tooltip for the shift right button */ - N_("Shift Right")}, + N_("Shift Right [>>]")}, {"finc_compounding_term", NULL, FUNCTION, /* Tooltip for the compounding term button */ N_("Compounding Term")}, |