diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-05-21 22:39:53 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-05-21 22:39:53 +0000 |
commit | e4e3f73db10d345453f2c6d06ae1dc499a4c7404 (patch) | |
tree | 7117443cf1267f9354206c21d70ac4ae0ddefcec /src/gui/scrollarea.cpp | |
parent | 241e2461446a830194f202b840abcd3598f804a5 (diff) | |
download | mana-e4e3f73db10d345453f2c6d06ae1dc499a4c7404.tar.gz mana-e4e3f73db10d345453f2c6d06ae1dc499a4c7404.tar.bz2 mana-e4e3f73db10d345453f2c6d06ae1dc499a4c7404.tar.xz mana-e4e3f73db10d345453f2c6d06ae1dc499a4c7404.zip |
Numerous things:
* Fixed two non-virtual destructor warnings showing up with GCC 4.
* Fixed OpenGL inventory text drawing that broke in last commit
* Removed glClear cause screen is redrawn completely anyway
* Fixed updating of buttons in inventory window
* Made items.xml be loaded through resource manager.
Diffstat (limited to 'src/gui/scrollarea.cpp')
-rw-r--r-- | src/gui/scrollarea.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/gui/scrollarea.cpp b/src/gui/scrollarea.cpp index a5c5542f..ad31ada8 100644 --- a/src/gui/scrollarea.cpp +++ b/src/gui/scrollarea.cpp @@ -277,26 +277,18 @@ void ScrollArea::drawRightButton(gcn::Graphics *graphics) void ScrollArea::drawVBar(gcn::Graphics *graphics) { - //int x, y; gcn::Rectangle dim = getVerticalBarDimension(); - //getAbsolutePosition(x, y); - graphics->setColor(gcn::Color(0, 0, 0, 32)); graphics->fillRectangle(dim); - //((Graphics*)graphics)->drawImageRect( - // x + dim.x, y + dim.y, dim.width, dim.height, background); + graphics->setColor(gcn::Color(255, 255, 255)); } void ScrollArea::drawHBar(gcn::Graphics *graphics) { - //int x, y; gcn::Rectangle dim = getHorizontalBarDimension(); - //getAbsolutePosition(x, y); - graphics->setColor(gcn::Color(0, 0, 0, 32)); graphics->fillRectangle(dim); - //((Graphics*)graphics)->drawImageRect( - // x + dim.x, y + dim.y, dim.width, dim.height, background); + graphics->setColor(gcn::Color(255, 255, 255)); } void ScrollArea::drawVMarker(gcn::Graphics *graphics) |