Skip to content

Commit

Permalink
ScrollBarGripMinSizeConstraint: Make class private
Browse files Browse the repository at this point in the history
  • Loading branch information
caoimhebyrne committed Jul 15, 2024
1 parent 6b3fd25 commit 827d55c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 18 deletions.
17 changes: 0 additions & 17 deletions api/Elementa.api
Original file line number Diff line number Diff line change
Expand Up @@ -427,23 +427,6 @@ public final class gg/essential/elementa/components/ScrollComponent$Direction :
public static fun values ()[Lgg/essential/elementa/components/ScrollComponent$Direction;
}

public final class gg/essential/elementa/components/ScrollComponent$ScrollBarGripMinSizeConstraint : gg/essential/elementa/constraints/SizeConstraint {
public fun <init> (Lgg/essential/elementa/components/ScrollComponent;Lgg/essential/elementa/constraints/SizeConstraint;)V
public fun animationFrame ()V
public fun getCachedValue ()Ljava/lang/Float;
public synthetic fun getCachedValue ()Ljava/lang/Object;
public fun getConstrainTo ()Lgg/essential/elementa/UIComponent;
public fun getHeightImpl (Lgg/essential/elementa/UIComponent;)F
public fun getRadiusImpl (Lgg/essential/elementa/UIComponent;)F
public fun getRecalculate ()Z
public fun getWidthImpl (Lgg/essential/elementa/UIComponent;)F
public fun setCachedValue (F)V
public synthetic fun setCachedValue (Ljava/lang/Object;)V
public fun setConstrainTo (Lgg/essential/elementa/UIComponent;)V
public fun setRecalculate (Z)V
public fun visitImpl (Lgg/essential/elementa/constraints/resolution/ConstraintVisitor;Lgg/essential/elementa/constraints/ConstraintType;)V
}

public final class gg/essential/elementa/components/ScrollComponent$ScrollChildConstraint : gg/essential/elementa/constraints/HeightConstraint, gg/essential/elementa/constraints/WidthConstraint {
public fun <init> (Lgg/essential/elementa/components/ScrollComponent;F)V
public synthetic fun <init> (Lgg/essential/elementa/components/ScrollComponent;FILkotlin/jvm/internal/DefaultConstructorMarker;)V
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ class ScrollComponent constructor(
*
* @param desiredSize The intended size for the scrollbar grip.
*/
inner class ScrollBarGripMinSizeConstraint(
private class ScrollBarGripMinSizeConstraint(
private val desiredSize: SizeConstraint
) : SizeConstraint {
override var cachedValue: Float = 0f
Expand Down

0 comments on commit 827d55c

Please sign in to comment.