From ad7f97bfc33a5dc2169757463780b1a0afb4db01 Mon Sep 17 00:00:00 2001 From: thunder2 Date: Fri, 7 Jan 2011 13:17:22 +0000 Subject: [PATCH] Fixed drag and drop of files for a new forum message in Ubuntu. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3953 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/forums/CreateForumMsg.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/retroshare-gui/src/gui/forums/CreateForumMsg.cpp b/retroshare-gui/src/gui/forums/CreateForumMsg.cpp index a3ed6cef8..b3db96615 100644 --- a/retroshare-gui/src/gui/forums/CreateForumMsg.cpp +++ b/retroshare-gui/src/gui/forums/CreateForumMsg.cpp @@ -59,6 +59,8 @@ CreateForumMsg::CreateForumMsg(std::string fId, std::string pId) connect( ui.attachFileButton, SIGNAL(clicked() ), this , SLOT(addFile())); connect( ui.pastersButton, SIGNAL(clicked() ), this , SLOT(pasteLink())); + setAcceptDrops(true); + newMsg(); }