From 37c924512c4bb7856de65d35b8fa8ff4204214b1 Mon Sep 17 00:00:00 2001 From: OTHGMars Date: Tue, 28 Sep 2021 05:52:45 -0400 Subject: [PATCH] Corrects console documentation. --- Engine/source/gui/core/guiCanvas.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Engine/source/gui/core/guiCanvas.cpp b/Engine/source/gui/core/guiCanvas.cpp index 8ad674474..96022edaa 100644 --- a/Engine/source/gui/core/guiCanvas.cpp +++ b/Engine/source/gui/core/guiCanvas.cpp @@ -107,16 +107,16 @@ ConsoleDocClass( GuiCanvas, IMPLEMENT_CALLBACK(GuiCanvas, onSetKeyboardTranslationEnabled, bool, (bool enable), (enable), "Called when the canvas receives an enableKeyboardTranslation request. This is usually the " - "result of a GuitTextInputCtrl gaining or losing focus. Return false to allow the request " - "to be passed to the platform window. Return true to override the request and handle it in script.\n\n" + "result of a GuitTextInputCtrl gaining or losing focus. Return true to allow the request " + "to be passed to the platform window. Return false to override the request and handle it in script.\n\n" "@note This callback is only issued if keyTranslationMode is set to \"Callback\" for this canvas.\n" "@param enable Requested keyboard translation state.\n" "@see KeyboardTranslationMode\n"); IMPLEMENT_CALLBACK(GuiCanvas, onSetNativeAcceleratorsEnabled, bool, (bool enable), (enable), "Called when the canvas receives a setNativeAcceleratorsEnabled request. This is usually the " - "result of a GuitTextInputCtrl gaining or losing focus. Return false to allow the request to " - "be passed to the platform window. Return true to override the request and handle it in script.\n\n" + "result of a GuitTextInputCtrl gaining or losing focus. Return true to allow the request to " + "be passed to the platform window. Return false to override the request and handle it in script.\n\n" "@note This callback is only issued if nativeAcceleratorMode is set to \"Callback\" for this canvas.\n" "@param enable Requested accelerator state.\n" "@see KeyboardTranslationMode\n");