summaryrefslogtreecommitdiff
path: root/src/nautilus-view-dnd.c
Commit message (Collapse)AuthorAgeFilesLines
* nautilus-view-dnd: fix unwanted refresh when dnd over archiver fileNelson Benítez León2015-01-121-1/+6
| | | | | | | When switching slot location while dnd, make sure the target location is a directory. Fixes bug 742766
* Updated FSF's addressDaniel Mustieles2014-01-311-3/+1
|
* view-dnd: pass the correct attrs number to pango_get_log_attrs()Cosimo Cecchi2013-08-161-2/+2
| | | | | | | num_attrs always needs to be the number of characters plus one, or Pango will warn and possibly corrupt memory. https://bugzilla.gnome.org/show_bug.cgi?id=706131
* Bug 703233 - When you drag a file in nautilus, it updates pageNelson Benitez Leon2013-07-301-1/+5
| | | | | | | | | Don't call nautilus_window_slot_open_location for the current location, as it's already opened and causes an unwanted refresh. Bug was introduced in commit 0d635bda Signed-off-by: Nelson Benítez León <nbenitezl+gnome@gmail.com>
* Bug 698892 - Replace slashes in dnd'd textWilliam Kunkel2013-07-291-0/+10
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=698892
* Switch location on list view hoverWilliam Jon McCann2013-01-211-0/+14
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=692097
* Try to use dropped text to make a filenameWilliam Jon McCann2012-08-161-5/+58
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=347563
* Rename icon view to canvas viewWilliam Jon McCann2012-08-071-1/+0
| | | | | | | This will allow us to retain canvas view for the desktop directory but implement a new icon view for other folders. https://bugzilla.gnome.org/show_bug.cgi?id=681370
* all: use g_strcmp0 instead of eel_str_is_empty()Cosimo Cecchi2012-04-111-2/+2
|
* slot: don't include gi18n.h in the headerCosimo Cecchi2012-01-091-0/+2
|
* dnd: rework handling of _NETSCAPE_URL dnd linksCosimo Cecchi2011-04-041-193/+75
| | | | | | | | | | | | | | | | | | | | | Previously we used to to the following: * default to always "ask", unless the copy was explicit * when dropped, we did not actually ask anything but we would trigger an async mimetype query_info and: - trigger a file asking whether to download or to link for text files - silently link for HTML files - silently download for every other mimetype * if the query_info was not completed within one second, we would download by default This is somewhat broken, as the DnD icon is not what you would expect; also downloading is not usually done with DnD from the browser, and it's also expensive, so it should never be the default, but an explicit choice. It also makes it impossible to create links for anything else than text or HTML. Change the policy to always link by default, unless the user explicitly requests the copy.
* desktop-icon-view: rename FMDesktopIconView -> NautilusDesktopIconViewCosimo Cecchi2011-01-111-1/+1
|
* Move icon views outside of src/file-managerCosimo Cecchi2011-01-111-2/+2
| | | | | Part of the final step towards removing src/file-manager completely; only code shuffling around, not any real code change.
* view: drop FMDirectoryView nameCosimo Cecchi2011-01-111-2/+2
| | | | Big code rename/indent fix, no actual code change here.
* view: split DnD code into its own moduleCosimo Cecchi2011-01-111-0/+579
And use new method names in other classes