summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorRick Pasetto <rick@lindenlab.com>2010-02-01 15:12:57 -0800
committerRick Pasetto <rick@lindenlab.com>2010-02-01 15:12:57 -0800
commitf44ee460c5d2c3531ea213b22e112bc74fe471d0 (patch)
tree2cadc75d00b067204248d9f4ca713cb6b8d3e9e4 /indra/newview
parente23b55c4a8c4de563b43c8d8465fad4b9678eccb (diff)
Fix regression where SLURL DND when logged in didn't work (line got dropped)
Reviewed by callum
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llviewerwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index b36cd5b934..fdc6675db1 100644
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -825,7 +825,8 @@ LLWindowCallbacks::DragNDropResult LLViewerWindow::handleDragNDrop( LLWindow *wi
{
if (drop)
{
- LLURLSimString::setStringRaw( LLSLURL::stripProtocol( data ) );
+ LLURLDispatcher::dispatch( data, NULL, true );
+ LLURLSimString::setStringRaw( LLSLURL::stripProtocol( data ) );
LLPanelLogin::refreshLocation( true );
LLPanelLogin::updateLocationUI();
}