From 296894d65a1a8e7d2b9aa0538e3e193b985c207d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 21 Mar 2012 01:35:52 +0300 Subject: Fix copy to clipboard with links. --- src/gui/widgets/browserbox.cpp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 47c5616b6..d5b088369 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -659,6 +659,8 @@ std::string BrowserBox::getTextAtPos(const int x, const int y) std::string str = ""; + int lastY = 0; + for (LinePartIterator i = mLineParts.begin(); i != mLineParts.end(); ++i) @@ -668,7 +670,16 @@ std::string BrowserBox::getTextAtPos(const int x, const int y) continue; if (part.mY > textY) break; - str = part.mText; + + if (part.mY > lastY) + { + str = part.mText; + lastY = part.mY; + } + else + { + str += part.mText; + } } return str; -- cgit v1.2.3-70-g09d2