diff options
author | Sven Göthel <[email protected]> | 2024-01-27 08:25:48 +0100 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-01-27 08:25:48 +0100 |
commit | 298cfd3a0c36bcb7580f8fd3d02e470f36b50f10 (patch) | |
tree | 99f34433f3c55122c60280a69a1388336c06ab0c /src/graphui | |
parent | ccf52ae58e55c09139fd44d4d7a6812f51adb15e (diff) |
GraphUI MediaPlayer: Disable always DEBUG hack
Diffstat (limited to 'src/graphui')
-rw-r--r-- | src/graphui/classes/com/jogamp/graph/ui/widgets/MediaPlayer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/widgets/MediaPlayer.java b/src/graphui/classes/com/jogamp/graph/ui/widgets/MediaPlayer.java index aba974131..e2912bdf4 100644 --- a/src/graphui/classes/com/jogamp/graph/ui/widgets/MediaPlayer.java +++ b/src/graphui/classes/com/jogamp/graph/ui/widgets/MediaPlayer.java @@ -164,7 +164,7 @@ public class MediaPlayer extends Widget { @Override public void attributesChanged(final GLMediaPlayer mp, final EventMask eventMask, final long when) { - if( DEBUG || true ) { + if( DEBUG ) { System.err.println("MediaButton AttributesChanges: "+eventMask+", when "+when); System.err.println("MediaButton State: "+mp); } |