From 8ad8ff167ebd15172677e0b5bb13b81e75075b9d Mon Sep 17 00:00:00 2001 From: GoToLoop Date: Fri, 15 Jul 2016 04:53:17 -0300 Subject: [PATCH] Update ControllerGroup.java --- src/controlP5/ControllerGroup.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/controlP5/ControllerGroup.java b/src/controlP5/ControllerGroup.java index e57795b..29887b4 100755 --- a/src/controlP5/ControllerGroup.java +++ b/src/controlP5/ControllerGroup.java @@ -74,15 +74,15 @@ public abstract class ControllerGroup< T extends ControllerGroup< T > > protected final float[] autoPosition = new float[] { 10f , 30f }; protected float tempAutoPositionHeight = 0f; protected float autoPositionOffsetX = 10f; - private String _myAddress = ""; - private boolean mouseover; + protected String _myAddress = ""; + protected boolean mouseover; protected final T me = ( T ) this; /** * Convenience constructor to extend ControllerGroup. */ public ControllerGroup( ControlP5 theControlP5 , String theName ) { - this( theControlP5 , theControlP5.getDefaultTab( ) , theName , 0f , 0f ); + this( theControlP5 , theControlP5.getDefaultTab( ) , theName , 0 , 0 ); cp5.register( theControlP5.papplet , theName , this ); }