diff options
author | Sven Göthel <[email protected]> | 2024-01-28 08:42:26 +0100 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-01-28 08:42:26 +0100 |
commit | 432339880fbf00d0003cd1ed4ac3c7d37d323c22 (patch) | |
tree | 21f974bd6f4110deaf15788b76ce89bb6783affe /src/demos | |
parent | d537f28ca05e1ae5d611cc3d30ca9c54137d599f (diff) |
GraphUI Demo UIMediaGrid00: Add missing patch from relocating getSymbolsFont()
Diffstat (limited to 'src/demos')
-rw-r--r-- | src/demos/com/jogamp/opengl/demos/graph/ui/UIMediaGrid00.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demos/com/jogamp/opengl/demos/graph/ui/UIMediaGrid00.java b/src/demos/com/jogamp/opengl/demos/graph/ui/UIMediaGrid00.java index b12030e49..888a5bd28 100644 --- a/src/demos/com/jogamp/opengl/demos/graph/ui/UIMediaGrid00.java +++ b/src/demos/com/jogamp/opengl/demos/graph/ui/UIMediaGrid00.java @@ -213,7 +213,7 @@ public class UIMediaGrid00 { final List<Shape> customCtrls = new ArrayList<Shape>(); { - final Font fontSymbols = MediaPlayer.getSymbolsFont(); + final Font fontSymbols = Scene.getSymbolsFont(); if( null == fontSymbols ) { grid.addShape( new Rectangle(options.renderModes, 16f/9f, 1, 0.10f) ); return; |