diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-16 19:51:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-16 20:05:42 +0300 |
commit | 7f7ac0e998506fb2b19b03ae4f2ef6ef04b87b13 (patch) | |
tree | ff445411d6b69e6f65f7f83bf7ff634974f472c6 /src/gui/widgets/browserbox.h | |
parent | bf3205aafa71fad7138e7be8a4b641907ec056ce (diff) | |
download | plus-7f7ac0e998506fb2b19b03ae4f2ef6ef04b87b13.tar.gz plus-7f7ac0e998506fb2b19b03ae4f2ef6ef04b87b13.tar.bz2 plus-7f7ac0e998506fb2b19b03ae4f2ef6ef04b87b13.tar.xz plus-7f7ac0e998506fb2b19b03ae4f2ef6ef04b87b13.zip |
fix speechbubble size.
Diffstat (limited to 'src/gui/widgets/browserbox.h')
-rw-r--r-- | src/gui/widgets/browserbox.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/widgets/browserbox.h b/src/gui/widgets/browserbox.h index fd037506b..5a09f60d6 100644 --- a/src/gui/widgets/browserbox.h +++ b/src/gui/widgets/browserbox.h @@ -234,6 +234,9 @@ class BrowserBox final : public gcn::Widget, void setForegroundColorAll(const gcn::Color &color1, const gcn::Color &color2); + int getDataWidth() const + { return mDataWidth; } + private: int calcHeight() A_WARN_UNUSED; @@ -264,6 +267,7 @@ class BrowserBox final : public gcn::Widget, int mPadding; int mNewLinePadding; int mItemPadding; + unsigned int mDataWidth; gcn::Color mHighlightColor; gcn::Color mHyperLinkColor; |