- F2 to rename

- F8 to switch between active views
- Finally fix dnd in FileIconView
This commit is contained in:
Vedran Ljubovic
2007-08-24 09:19:53 +00:00
parent 7a59ab12a4
commit fdf84c4620
7 changed files with 66 additions and 18 deletions

View File

@@ -399,9 +399,9 @@ int FileDetailsView::handle(int e) {
selected_items += "\r\n";
}
EDEBUG(DBG "DnD buffer: '%s'\n", selected_items.c_str());
dragx = Fl::event_x(); dragy = Fl::event_y();
Fl::copy(selected_items.c_str(),selected_items.length(),0);
Fl::dnd();
dragx = Fl::event_x(); dragy = Fl::event_y();
return 1; // don't do the multiple selection thing from Fl_Browser
}