Skip to content

Commit f025162

Browse files
committed
Fix inline doublespaces
1 parent 7cd57bb commit f025162

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/user-interface-tools/window-object.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ new Window (type [, title, bounds, {creation_properties}]);
4545
| | | |
4646
| | | Default is `true`. |
4747
+-----------------------+---------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
48-
| `maximizeButton` | Boolean | When `true`, the title bar includes a button to expand the window to its maximum size (typically, the entire screen), if the platform and window type allow it. When `false`, it does not. Not used for dialogs. |
48+
| `maximizeButton` | Boolean | When `true`, the title bar includes a button to expand the window to its maximum size (typically, the entire screen), if the platform and window type allow it. When `false`, it does not. Not used for dialogs. |
4949
| | | |
5050
| | | Default is `false` for type palette, `true` for type window. |
5151
+-----------------------+---------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
@@ -910,7 +910,7 @@ The following callback functions can be defined to respond to events in windows.
910910
| Callback | Description |
911911
| --------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
912912
| `onActivate` | Called when the user make the window active by clicking it or otherwise making it the keyboard focus. |
913-
| `onClose` | Called when a request is made to close the window, either by an explicit call to the [close()](#close) function or by a user action (clicking the OS-specific close icon in the title bar). The function is called before the window actually closes; it can return `false` to cancel the close operation. |
913+
| `onClose` | Called when a request is made to close the window, either by an explicit call to the [close()](#close) function or by a user action (clicking the OS-specific close icon in the title bar). The function is called before the window actually closes; it can return `false` to cancel the close operation. |
914914
| `onDeactivate` | Called when the user makes a previously active window inactive; for instance by closing it, or by clicking another window to change the keyboard focus. |
915915
| `onDraw` | Called when a container or control is about to be drawn. Allows the script to modify or control the appearance, using the control's associated [ScriptUIGraphics object](graphic-customization-objects.md#scriptuigraphics-object) object. Handler takes one argument, a [DrawState object](control-objects.md#drawstate-object) object. |
916916
| `onMove` | Called when the window has been moved. |

0 commit comments

Comments
 (0)