mirror of
https://github.com/lubosz/overte.git
synced 2025-04-13 05:19:27 +02:00
Fix up JSDoc for Window.minimizedChanged signal
This commit is contained in:
parent
7cf216f114
commit
c86ef990db
1 changed files with 5 additions and 1 deletions
|
@ -818,8 +818,12 @@ signals:
|
|||
/**jsdoc
|
||||
* Triggered when "minimized" state of the Interface window changes.
|
||||
* @function Window.minimizedChanged
|
||||
* @param {bool} isMinimized - true if the Interface window is now minimized; false otherwise.
|
||||
* @param {boolean} isMinimized - <code>true</code> if the Interface window is minimized, <code>false</code> if it isn't.
|
||||
* @returns {Signal}
|
||||
* @example <caption>Report the "minimized" state of the Interface window when it changes.</caption>
|
||||
* function onWindowMinimizedChanged(minimized) {
|
||||
* print("Window minimized: " + minimized);
|
||||
* }
|
||||
*
|
||||
* Window.minimizedChanged.connect(onWindowMinimizedChanged);
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue