UI: Fix AutoKeying Text

Recent changes overlay drawing code resulted in a call to draw the
"Autokeying" text being removed, showing only the icon.  This PR just
replaces one removed line.

Pull Request: https://projects.blender.org/blender/blender/pulls/121811
This commit is contained in:
Harley Acheson 2024-05-15 01:41:10 +02:00 committed by Harley Acheson
parent 7017091272
commit d42e507c14

@ -1613,6 +1613,7 @@ static void drawAutoKeyWarning(TransInfo *t, ARegion *region)
}
BLF_color4fv(BLF_default(), text_color);
BLF_shadow(BLF_default(), FontShadowType::Outline, shadow_color);
BLF_draw_default(xco, yco, 0.0f, printable, BLF_DRAW_STR_DUMMY_MAX);
/* Auto-key recording icon. */
GPU_blend(GPU_BLEND_ALPHA);