diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-24 21:26:09 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-24 21:26:09 -0700 |
commit | 6f583460139dbf1d0fa11306b684ce9474af6bff (patch) | |
tree | 8878debc76b4025e6f3bfc0f2fc79121047db23a | |
parent | 30d5f6db2568dc4682cb9ceceb95b2167df8d629 (diff) | |
download | mana-client-6f583460139dbf1d0fa11306b684ce9474af6bff.tar.gz mana-client-6f583460139dbf1d0fa11306b684ce9474af6bff.tar.bz2 mana-client-6f583460139dbf1d0fa11306b684ce9474af6bff.tar.xz mana-client-6f583460139dbf1d0fa11306b684ce9474af6bff.zip |
Minor tweak to speech bubble sizes so that small bubbles are as small as
they can be and not have text run off.
Signed-off-by: Ira Rice <irarice@gmail.com>
-rw-r--r-- | src/gui/speechbubble.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index 97e3fd73..a6bb5563 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -96,12 +96,12 @@ void SpeechBubble::setText(std::string mText) } else { - int width = mCaption->getWidth() + 8; + int width = mCaption->getWidth() + 3; if (width < getFont()->getWidth(mText)) width = getFont()->getWidth(mText); setContentSize(width + fontHeight, (fontHeight * 2) + 6); mSpeechArea->setDimension(gcn::Rectangle(4, fontHeight + 3, - width + 5, fontHeight)); + width, fontHeight)); } } |