Paste in Text tool: fix a graphic overflow.
Palette reduce: use DawnBringer's formula for color likeness git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1837 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
13
src/input.h
13
src/input.h
@@ -64,3 +64,16 @@ extern int Snap_axis_origin_Y;
|
||||
/// This malloced string is set when a drag-and-drop event
|
||||
/// brings a file to Grafx2's window.
|
||||
extern char * Drop_file_name;
|
||||
|
||||
#if defined __HAIKU__
|
||||
#define SHORTCUT_COPY (SDLK_c|MOD_ALT)
|
||||
#else
|
||||
#define SHORTCUT_COPY (SDLK_c|MOD_CTRL)
|
||||
#endif
|
||||
|
||||
#if defined __HAIKU__
|
||||
#define SHORTCUT_PASTE (SDLK_v|MOD_ALT)
|
||||
#else
|
||||
#define SHORTCUT_PASTE (SDLK_v|MOD_CTRL)
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user