Skip to content

Commit

Permalink
Fix timeline keys
Browse files Browse the repository at this point in the history
  • Loading branch information
UmSenhorQualquer committed Mar 6, 2019
1 parent 99ae52f commit fd546d3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion pyforms_gui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__author__ = "Ricardo Ribeiro"
__credits__ = ["Ricardo Ribeiro"]
__license__ = "MIT"
__version__ = "4.2"
__version__ = "4.3"
__maintainer__ = "Ricardo Ribeiro"
__email__ = "ricardojvr@gmail.com"
__status__ = "Development"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ class ControlEventTimeline(ControlBase, QWidget):
"""
Timeline events editor
Short keys:
- Control + Left: Move event to the left.
- Control + Right: Move event to the right.
- Delete: Delete an event.
- L: Lock an event.
- Control + Up: Move an event up.
- Control + Down: Move an event down.
- Shift + Control + Left: Move an event end time to the left.
- Shift + Control + Right: Move an event end to the right.
- Shift + Left: Move an event beginning to the left.
- Shift + Right: Move an event beginning to the right.
- S: First press, mark the beginning of an event, Second press, create an event ending in the current cursor time.
- A: Move the cursor to the left.
- D: Move the cursor to the right.
*Short keys:*
- *Control + Left*: Move event to the left.
- *Control + Right*: Move event to the right.
- *Delete*: Delete an event.
- *L: Lock an event.
- *Control + Up*: Move an event up.
- *Control + Down*: Move an event down.
- *Shift + Control + Left*: Move an event end time to the left.
- *Shift + Control + Right*: Move an event end to the right.
- *Shift + Left*: Move an event beginning to the left.
- *Shift + Right*: Move an event beginning to the right.
- *S*: First press, mark the beginning of an event, Second press, create an event ending in the current cursor time.
- *A*: Move the cursor to the left.
- *D*: Move the cursor to the right.
"""

def __init__(self, label="", default=0, max=100):
Expand Down

0 comments on commit fd546d3

Please sign in to comment.