diff options
author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-07-17 16:49:27 +0200 |
---|---|---|
committer | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-08-17 16:39:28 +0200 |
commit | 9cb36850303f8ce6c031926512aad3fc2d800889 (patch) | |
tree | 1984c9b8060bfbd16fa0cb4fb889520066c063df /display-gtk.h | |
parent | 1a7695115964887cd19bf1d7e2cef60a2c939482 (diff) | |
download | subsurface-9cb36850303f8ce6c031926512aad3fc2d800889.tar.gz |
Add a 'Save As' entry in the menu.
Add a "Save As" entry in the "File" menu allowing the user to specify the file in which to save
the data. This is useful as we no longer offer this option through the "Save" entry while the data
had been opened from an existing file.
Signed-off-by: Pierre-Yves Chibon
Diffstat (limited to 'display-gtk.h')
-rw-r--r-- | display-gtk.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/display-gtk.h b/display-gtk.h index 059c6aa23..1f143077e 100644 --- a/display-gtk.h +++ b/display-gtk.h @@ -31,9 +31,11 @@ typedef enum { #if defined __APPLE__ #define CTRLCHAR "<Meta>" +#define SHIFTCHAR "<Shift>" #define PREFERENCE_ACCEL "<Meta>comma" #else #define CTRLCHAR "<Control>" +#define SHIFTCHAR "<Shift>" #define PREFERENCE_ACCEL NULL #endif |