We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f2bf72 commit 04e06f7Copy full SHA for 04e06f7
1 file changed
gfx/gfx_widgets.c
@@ -1273,8 +1273,6 @@ static void gfx_widgets_draw_task_msg(
1273
int texture = MENU_WIDGETS_ICON_CHECK;
1274
float *color = msg_queue_task_positive;
1275
1276
- gfx_display_set_alpha(color, msg->alpha);
1277
-
1278
if (!(msg->flags & DISPWIDG_FLAG_TASK_FINISHED))
1279
{
1280
texture = MENU_WIDGETS_ICON_HOURGLASS;
@@ -1298,6 +1296,8 @@ static void gfx_widgets_draw_task_msg(
1298
1296
color = msg_queue_task_negative;
1299
1297
}
1300
+ gfx_display_set_alpha(color, msg->alpha);
+
1301
gfx_widgets_draw_icon(
1302
userdata,
1303
p_disp,
0 commit comments