updated KnownIssues
This commit is contained in:
parent
a39ce34ee9
commit
26d2b28484
2 changed files with 8 additions and 1 deletions
|
@ -1 +1,8 @@
|
||||||
Undo is broken badly when filtering.
|
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.
|
||||||
|
|
||||||
|
|
|
@ -203,7 +203,7 @@
|
||||||
// shift+command+p - fade to pause
|
// shift+command+p - fade to pause
|
||||||
else if (modifiers == (NSCommandKeyMask | NSShiftKeyMask) && c == 0x70)
|
else if (modifiers == (NSCommandKeyMask | NSShiftKeyMask) && c == 0x70)
|
||||||
{
|
{
|
||||||
[playbackController fadeOut:self withTime:0.4];
|
[playbackController fadeOut:self withTime:0.3];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue