From 41b33f89689b78dbffd230d7884dab8a3da5ea0b Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Thu, 19 Jan 2023 08:23:05 +0100 Subject: [PATCH] Fix spelling mistake in previous commit. --- source/blender/windowmanager/intern/wm_window.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/source/blender/windowmanager/intern/wm_window.c b/source/blender/windowmanager/intern/wm_window.c index a73b9f6f51c..0077c8e2259 100644 --- a/source/blender/windowmanager/intern/wm_window.c +++ b/source/blender/windowmanager/intern/wm_window.c @@ -1660,9 +1660,10 @@ static uiBlock *block_create_opengl_usage_warning(struct bContext *C, uiLayout *col = uiLayoutColumn(layout, false); uiItemL_ex(col, TIP_("Python script uses OpenGL for drawing."), ICON_NONE, true, false); uiItemL(col, TIP_("This may lead to unexpected behavior"), ICON_NONE); - uiItemL(col, - TIP_("One of the add-ons or scripts is using OpenGL and will not work correct on Metal."), - ICON_NONE); + uiItemL( + col, + TIP_("One of the add-ons or scripts is using OpenGL and will not work correct on Metal."), + ICON_NONE); uiItemL(col, TIP_("Please contact the developer of the add-on to migrate to use 'gpu' module."), ICON_NONE); @@ -1702,7 +1703,7 @@ void wm_test_opengl_deprecation_warning(bContext *C) BKE_report( &wm->reports, RPT_ERROR, - TIP_("One of the add-ons or script is using OpenGL and will not work correct on Metal. " + TIP_("One of the add-ons or scripts is using OpenGL and will not work correct on Metal. " "Please contact the developer of the add-on to migrate to use 'gpu' module.")); if (win) {