summaryrefslogtreecommitdiffstats
path: root/src/tk/button.c
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2022-01-27 18:24:50 (EST)
committer P. J. McDermott <pj@pehjota.net>2022-01-27 18:33:05 (EST)
commit8ba3e62614e61e47ca7f8d79cd8c93d547206f74 (patch)
tree044e1c2a2e509b1268c2028028a31b43a856227d /src/tk/button.c
parent9d331d766c9093c4c003d6b3629a9f1c69b08174 (diff)
downloadmazefight-8ba3e62614e61e47ca7f8d79cd8c93d547206f74.zip
mazefight-8ba3e62614e61e47ca7f8d79cd8c93d547206f74.tar.gz
mazefight-8ba3e62614e61e47ca7f8d79cd8c93d547206f74.tar.bz2
tk: Fill text background (if editable)
And use the same macros for all background fill colors.
Diffstat (limited to 'src/tk/button.c')
-rw-r--r--src/tk/button.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tk/button.c b/src/tk/button.c
index 47f59f6..c0a0c61 100644
--- a/src/tk/button.c
+++ b/src/tk/button.c
@@ -113,8 +113,8 @@ _mftk_button_render(struct mftk_widget *w, SDL_Renderer *renderer, int x, int y)
rect.w = w->w;
rect.h = w->h;
if (SDL_SetRenderDrawColor(renderer,
- MFTK_COLOR_BUTN_R, MFTK_COLOR_BUTN_G,
- MFTK_COLOR_BUTN_B, MFTK_COLOR_BUTN_A) < 0 ||
+ MFTK_COLOR_BACK_R, MFTK_COLOR_BACK_G,
+ MFTK_COLOR_BACK_B, MFTK_COLOR_BACK_A) < 0 ||
SDL_RenderFillRect(renderer, &rect) < 0) {
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
"Couldn't render widget: %s",