Skip to content

Commit

Permalink
Fix seaplayer.py
Browse files Browse the repository at this point in the history
  • Loading branch information
romanin-rf committed May 1, 2023
1 parent 9ddc636 commit 88817a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seaplayer/seaplayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class SeaPlayer(App):
Binding(key="й", action="quit", description="Quit", show=False),
Binding(key="/", action="minus_rewind", description=f"Rewind -{config.rewind_count_seconds} sec"),
Binding(key="*", action="plus_rewind", description=f"Rewind +{config.rewind_count_seconds} sec"),
Binding(key="-", action="minus_volume", description=f"Volume -{config.volume_change_percent}%"),
Binding(key="+", action="plus_volume", description=f"Volume +{config.volume_change_percent}%")
Binding(key="-", action="minus_volume", description=f"Volume -{round(config.volume_change_percent*100)}%"),
Binding(key="+", action="plus_volume", description=f"Volume +{round(config.volume_change_percent*100)}%")
]

# ! Template Configuration
Expand Down

0 comments on commit 88817a2

Please sign in to comment.