Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiko2k committed Oct 5, 2018
1 parent b6abe61 commit 87d8499
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ v3.2.3
- Fixed possible issue and crash when playing CUE sheet tracks and switching playlist
- Fixed 'hi' notification when track had no metadata
- Fixed some draw positioning in search overlay
- Tweaked playlist panel toggle to open on drag over
- Added DE whitelist for notification support as workaround for mpris commands failing
- Removed file corruption warnings due to many false positives

Expand Down
4 changes: 2 additions & 2 deletions config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
## --- Playback / Audio --------------------------------------------------------
## Fade times in ms. Full gapless playback not supported (min 50ms, max 3000ms)

pause-fade-time=400
cross-fade-time=700
#pause-fade-time=400
#cross-fade-time=700

## Use logarithmic volume instead of linear. (Provides wider range of control for lower volumes) (Bass Only)
#log-volume-scale=True
Expand Down
7 changes: 6 additions & 1 deletion tauon.py
Original file line number Diff line number Diff line change
Expand Up @@ -15560,6 +15560,7 @@ def render(self):

# C-TD
global quick_drag
global update_layout


if quick_drag is True:
Expand All @@ -15574,7 +15575,11 @@ def render(self):
if coll(rect):
if input.mouse_click:
gui.lsp ^= True
global update_layout

update_layout = True
gui.update += 1
if mouse_down and quick_drag:
gui.lsp = True
update_layout = True
gui.update += 1

Expand Down

0 comments on commit 87d8499

Please sign in to comment.