summaryrefslogtreecommitdiff
path: root/src/gui/widgets/dropdown.cpp
diff options
context:
space:
mode:
authorDavid Athay <ko2fan@gmail.com>2009-02-11 22:17:47 +0000
committerDavid Athay <ko2fan@gmail.com>2009-02-11 22:17:47 +0000
commit5e01985ee82007307c96f900057679485b977196 (patch)
tree818ee5c5ae3b02708c0fe5d75aad1ef25906e3f4 /src/gui/widgets/dropdown.cpp
parent91111ca5d13072ea3b834e23835df9c077329e39 (diff)
parent7b007058afab8ea920a5d60b31f45958e5622878 (diff)
downloadmana-5e01985ee82007307c96f900057679485b977196.tar.gz
mana-5e01985ee82007307c96f900057679485b977196.tar.bz2
mana-5e01985ee82007307c96f900057679485b977196.tar.xz
mana-5e01985ee82007307c96f900057679485b977196.zip
Merge branch 'master' of git@gitorious.org:tmw/eathena
Diffstat (limited to 'src/gui/widgets/dropdown.cpp')
-rw-r--r--src/gui/widgets/dropdown.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/dropdown.cpp b/src/gui/widgets/dropdown.cpp
index 29c6c69c..79d9ff06 100644
--- a/src/gui/widgets/dropdown.cpp
+++ b/src/gui/widgets/dropdown.cpp
@@ -135,7 +135,7 @@ void DropDown::draw(gcn::Graphics* graphics)
}
bool valid;
- const int alpha = mAlpha * 255;
+ const int alpha = (int)(mAlpha * 255.0f);
gcn::Color faceColor = getBaseColor();
faceColor.a = alpha;
gcn::Color highlightColor = textColor->getColor('H', valid);