diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-04 17:02:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-04 17:02:05 +0300 |
commit | 6ed69c8769cd6c8c79c77fc8116059b42f3653e7 (patch) | |
tree | 48ede1453da63c58ba02ccc35ab06c3f7a61ddca /src/gui/widgets/spellshortcutcontainer.cpp | |
parent | 002656b278ab1c2e09bca8f6ffd2d5c42d57b09c (diff) | |
download | plus-6ed69c8769cd6c8c79c77fc8116059b42f3653e7.tar.gz plus-6ed69c8769cd6c8c79c77fc8116059b42f3653e7.tar.bz2 plus-6ed69c8769cd6c8c79c77fc8116059b42f3653e7.tar.xz plus-6ed69c8769cd6c8c79c77fc8116059b42f3653e7.zip |
add function to graphics class to set normal and outline colors at once.
Diffstat (limited to 'src/gui/widgets/spellshortcutcontainer.cpp')
-rw-r--r-- | src/gui/widgets/spellshortcutcontainer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/widgets/spellshortcutcontainer.cpp b/src/gui/widgets/spellshortcutcontainer.cpp index 262f49f58..f03f1d4ca 100644 --- a/src/gui/widgets/spellshortcutcontainer.cpp +++ b/src/gui/widgets/spellshortcutcontainer.cpp @@ -109,8 +109,7 @@ void SpellShortcutContainer::draw(gcn::Graphics *graphics) gcn::Font *const font = getFont(); const int selectedId = spellShortcut->getSelectedItem(); - g->setColor(mForegroundColor); - g->setColor2(mForegroundColor2); + g->setColorAll(mForegroundColor, mForegroundColor2); drawBackground(g); for (unsigned i = 0; i < mMaxItems; i++) |