diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-18 17:46:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-18 17:46:05 +0300 |
commit | 220c16d60b9ab983536a9d17d8237fef983ce534 (patch) | |
tree | 8a31e40475eaf90ee76989648fa07af775e0feab /src/gui/widgets/browserbox.cpp | |
parent | 950bc2e6e485c0fe2c6a418913fd4d380f6f21b6 (diff) | |
download | plus-220c16d60b9ab983536a9d17d8237fef983ce534.tar.gz plus-220c16d60b9ab983536a9d17d8237fef983ce534.tar.bz2 plus-220c16d60b9ab983536a9d17d8237fef983ce534.tar.xz plus-220c16d60b9ab983536a9d17d8237fef983ce534.zip |
Fix selection problem from last commits in browser box.v1.2.2.19
Diffstat (limited to 'src/gui/widgets/browserbox.cpp')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 49b73a76a..5856a91b1 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -655,7 +655,7 @@ std::string BrowserBox::getTextAtPos(const int x, const int y) return ""; // mouse position ourside of correct widget (outside of tab) textX = x - textX; -// textY = y - textY; + textY = y - textY; std::string str = ""; |