Merge branch 'master' of http://git.neviyn.co.uk/git/neviyn/musicplayer
This commit is contained in:
commit
49c1dd6cb6
@ -295,10 +295,10 @@ public class PlayerGUI extends JPanel implements PlayerCallbackInterface {
|
|||||||
|
|
||||||
private class GlobalKeyboardShortcuts implements NativeKeyListener {
|
private class GlobalKeyboardShortcuts implements NativeKeyListener {
|
||||||
boolean modified = false;
|
boolean modified = false;
|
||||||
final int playPause = 192;
|
final char playPause = '\'';
|
||||||
final int stop = 222;
|
final char stop = '#';
|
||||||
final int previous = 219;
|
final char previous = '[';
|
||||||
final int next = 221;
|
final char next = ']';
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void nativeKeyPressed(NativeKeyEvent nativeKeyEvent) {
|
public void nativeKeyPressed(NativeKeyEvent nativeKeyEvent) {
|
||||||
@ -316,7 +316,7 @@ public class PlayerGUI extends JPanel implements PlayerCallbackInterface {
|
|||||||
public void nativeKeyTyped(NativeKeyEvent nativeKeyEvent) {
|
public void nativeKeyTyped(NativeKeyEvent nativeKeyEvent) {
|
||||||
if (modified) {
|
if (modified) {
|
||||||
try {
|
try {
|
||||||
switch (nativeKeyEvent.getRawCode()) {
|
switch (nativeKeyEvent.getKeyChar()) {
|
||||||
case playPause:
|
case playPause:
|
||||||
if (player.isPlaying()) {
|
if (player.isPlaying()) {
|
||||||
player.pause();
|
player.pause();
|
||||||
|
Loading…
Reference in New Issue
Block a user