diff --git a/KnownIssues b/KnownIssues index 414848b75..8b0411ef5 100644 --- a/KnownIssues +++ b/KnownIssues @@ -1 +1,8 @@ Undo is broken badly when filtering. + +Fade to pause is severely broken now that it uses volumeDown, since +this will not take into account the time used to fade. + +volumeUp and volumeDown of playbackController aren't quite right, and +the slider sets the volume differently. + diff --git a/Playlist/PlaylistView.m b/Playlist/PlaylistView.m index 79e8ea239..205c4b82a 100644 --- a/Playlist/PlaylistView.m +++ b/Playlist/PlaylistView.m @@ -203,7 +203,7 @@ // shift+command+p - fade to pause else if (modifiers == (NSCommandKeyMask | NSShiftKeyMask) && c == 0x70) { - [playbackController fadeOut:self withTime:0.4]; + [playbackController fadeOut:self withTime:0.3]; } else {