Skip to content

Commit

Permalink
Merge pull request #2 from froig/master
Browse files Browse the repository at this point in the history
Fixed getCurrentProjectViewSelection typo
  • Loading branch information
bbb999 committed Aug 9, 2021
2 parents 4f12b3f + 49215fb commit c4d752b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/application/application.rst
Original file line number Diff line number Diff line change
Expand Up @@ -923,12 +923,12 @@ A Project object, for the project associated with the provided View ID. Can be `
----
.. _app.getProjectViewSelection:
.. _app.getCurrentProjectViewSelection:
app.getProjectViewSelection()
app.getCurrentProjectViewSelection()
*********************************************
``app.getProjectViewSelection()``
``app.getCurrentProjectViewSelection()``
**Description**
Expand All @@ -946,7 +946,7 @@ An array of projectItems; can be null.
.. code:: javascript
var selectedItems = app.getProjectViewSelection();
var selectedItems = app.getCurrentProjectViewSelection();
if (selectedItems){
var firstOne = selectedItems[0];
} else {
Expand Down
8 changes: 4 additions & 4 deletions docs/item/trackitem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -282,13 +282,13 @@ Returns ``true`` if the trackitem is an adjustment layer; ``false`` if not.

----

.. _trackItem.isReversed:
.. _trackItem.isSpeedReversed():

TrackItem.isReversed()
TrackItem.isSpeedReversed()()
*********************************************

| ``app.project.sequences[index].audioTracks[index].clips[index].isReversed()``
| ``app.project.sequences[index].videoTracks[index].clips[index].isReversed()``
| ``app.project.sequences[index].audioTracks[index].clips[index].isSpeedReversed()()``
| ``app.project.sequences[index].videoTracks[index].clips[index].isSpeedReversed()()``
**Description**

Expand Down

0 comments on commit c4d752b

Please sign in to comment.