[Bf-blender-cvs] [41b33f89689] master: Fix spelling mistake in previous commit.

Jeroen Bakker noreply at git.blender.org
Thu Jan 19 08:23:20 CET 2023


Commit: 41b33f89689b78dbffd230d7884dab8a3da5ea0b
Author: Jeroen Bakker
Date:   Thu Jan 19 08:23:05 2023 +0100
Branches: master
https://developer.blender.org/rB41b33f89689b78dbffd230d7884dab8a3da5ea0b

Fix spelling mistake in previous commit.

===================================================================

M	source/blender/windowmanager/intern/wm_window.c

===================================================================

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) {



More information about the Bf-blender-cvs mailing list