Skip to content

Commit

Permalink
Merge woodenshoe-wi/rox-filer
Browse files Browse the repository at this point in the history
  • Loading branch information
jun7 committed Sep 4, 2018
1 parent b39248f commit a313dff
Show file tree
Hide file tree
Showing 4 changed files with 239 additions and 16 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@

Changes
- **Short cut keys around Copy and Paste are changed**

- https://github.com/jun7/rox-filer/wiki/Changes
- https://github.com/jun7/rox-filer/wiki/Screenshots

Expand Down
2 changes: 2 additions & 0 deletions ROX-Filer/src/dnd.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ const char *drop_dest_bookmark = "drop_dest_bookmark"; /* Add to bookmarks */
GdkAtom XdndDirectSave0;
GdkAtom xa_text_plain;
GdkAtom text_uri_list;
GdkAtom gnome_copied_files;
GdkAtom text_x_moz_url;
GdkAtom xa_application_octet_stream;
GdkAtom xa_string; /* Not actually used for DnD, but the others are here! */
Expand All @@ -150,6 +151,7 @@ void dnd_init(void)
XdndDirectSave0 = gdk_atom_intern("XdndDirectSave0", FALSE);
xa_text_plain = gdk_atom_intern("text/plain", FALSE);
text_uri_list = gdk_atom_intern("text/uri-list", FALSE);
gnome_copied_files = gdk_atom_intern("x-special/gnome-copied-files", FALSE);
text_x_moz_url = gdk_atom_intern("text/x-moz-url", FALSE);
xa_application_octet_stream = gdk_atom_intern("application/octet-stream",
FALSE);
Expand Down
2 changes: 2 additions & 0 deletions ROX-Filer/src/dnd.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ enum
TARGET_XDS,
TARGET_STRING,
TARGET_MOZ_URL,
TARGET_GNOME_COPIED_FILES,
};

typedef enum {
Expand All @@ -38,6 +39,7 @@ extern const char *drop_dest_pass_through;
extern const char *drop_dest_bookmark;
extern GdkAtom XdndDirectSave0;
extern GdkAtom text_uri_list;
extern GdkAtom gnome_copied_files;
extern GdkAtom _rox_run_action;
extern GdkAtom xa_application_octet_stream;
extern GdkAtom xa_string;
Expand Down
Loading

0 comments on commit a313dff

Please sign in to comment.