From 5561b695a1a633be25af18a3f1afd9035c121e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 8 May 2009 10:14:25 +0000 Subject: [PATCH] * Fixed a typo that prevented the right context menu copy action to work on directories. See ticket #3575. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30672 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/terminal/TermView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/terminal/TermView.cpp b/src/apps/terminal/TermView.cpp index e77e132398..9c4cb39229 100644 --- a/src/apps/terminal/TermView.cpp +++ b/src/apps/terminal/TermView.cpp @@ -1785,7 +1785,7 @@ TermView::_DoSecondaryMouseDropAction(BMessage* msg) } if (listContainsDirectory && action == kCopyFiles) - outString += " -R"; + outString += "-R "; outString += itemString;