Skip to content

Commit

Permalink
renamed special_actions in markdown, temporarily removed package files
Browse files Browse the repository at this point in the history
  • Loading branch information
leon-thomm committed Jun 6, 2021
1 parent 0060724 commit cc492cb
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 71 deletions.
9 changes: 0 additions & 9 deletions MANIFEST.in

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ Macros are like all other scripts, so they have their own flow, plus input and o
#### right click operations system for nodes
which can be edited through the API at any time.
```python
self.special_actions[f'remove input {i}'] = {
self.actions[f'remove input {i}'] = {
'method': self.rem_input,
'data': i,
}

# with some method...
def rem_input(self, index):
self.delete_input(index)
del self.special_actions[f'remove input {len(self.inputs)}']
del self.actions[f'remove input {len(self.inputs)}']
```

#### Qt widgets
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ There are a few more features for which you can find instructions in the [ryvenc

#### Special Actions

For example: you can use a node's `special_actions` dict to easily add dynamic right-click operations to your nodes which you can change at any time. Almost all of the example nodes make use of this feature, it's super useful.
For example: you can use a node's `actions` dict to easily add dynamic right-click operations to your nodes which you can change at any time. Almost all of the example nodes make use of this feature, it's super useful.

### Custom Widgets

Expand Down
1 change: 0 additions & 1 deletion ryvencore-drawio.xml

This file was deleted.

31 changes: 0 additions & 31 deletions setup.cfg

This file was deleted.

27 changes: 0 additions & 27 deletions setup.py

This file was deleted.

0 comments on commit cc492cb

Please sign in to comment.