diff options
author | matgic78 <matgic78@gmail.com> | 2010-05-24 09:01:02 +0200 |
---|---|---|
committer | matgic78 <matgic78@gmail.com> | 2010-05-24 09:01:02 +0200 |
commit | 4f62252713caae087179d45475cd12835f5bca96 (patch) | |
tree | 76cfb4fb3c6dfcb4a4828c203aa2c7a7f40a1ec3 | |
parent | SVN_SILENT made messages (.desktop file) (diff) | |
download | rekonq-4f62252713caae087179d45475cd12835f5bca96.tar.xz |
Fix pos of RSS widget when there are long translations. BUG 238640
-rw-r--r-- | src/urlbar/rsswidget.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/urlbar/rsswidget.cpp b/src/urlbar/rsswidget.cpp index 35095c07..ae96dfae 100644 --- a/src/urlbar/rsswidget.cpp +++ b/src/urlbar/rsswidget.cpp @@ -115,9 +115,12 @@ RSSWidget::~RSSWidget() void RSSWidget::showAt(const QPoint &pos) { + adjustSize(); + QPoint p; - p.setX(pos.x() - 200); + p.setX(pos.x() - width()); p.setY(pos.y() + 10); + move(p); show(); } |