diff options
Diffstat (limited to 'src/gui/widgets/table.cpp')
-rw-r--r-- | src/gui/widgets/table.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/widgets/table.cpp b/src/gui/widgets/table.cpp index 0bc4f3d1..f0887ed7 100644 --- a/src/gui/widgets/table.cpp +++ b/src/gui/widgets/table.cpp @@ -23,8 +23,8 @@ #include "configuration.h" -#include "gui/palette.h" #include "gui/sdlinput.h" +#include "gui/theme.h" #include "utils/dtor.h" @@ -275,7 +275,7 @@ void GuiTable::draw(gcn::Graphics* graphics) if (mOpaque) { - graphics->setColor(guiPalette->getColor(Palette::BACKGROUND, + graphics->setColor(Theme::getThemeColor(Theme::BACKGROUND, (int)(mAlpha * 255.0f))); graphics->fillRectangle(gcn::Rectangle(0, 0, getWidth(), getHeight())); } @@ -321,8 +321,8 @@ void GuiTable::draw(gcn::Graphics* graphics) widget->setDimension(bounds); - graphics->setColor(guiPalette->getColor(Palette::HIGHLIGHT, - (int)(mAlpha * 255.0f))); + graphics->setColor(Theme::getThemeColor(Theme::HIGHLIGHT, + (int)(mAlpha * 255.0f))); if (mLinewiseMode && r == mSelectedRow && c == 0) { |