Skip to content

Commit

Permalink
Streamlined Codebase. Code Style Refinement.
Browse files Browse the repository at this point in the history
  • Loading branch information
abouzerda committed Nov 27, 2023
1 parent cb5c92e commit d2a344d
Showing 1 changed file with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ open class CameraPane<T : LayoutView<*>>(

internal val isVerticalLockedProperty: BooleanProperty = BooleanProperty()

/**
* Determines if the camera pane is locked vertically, which means that you can only scroll
* horizontally.
*/
/**
* Determines if the camera pane is locked vertically, which means that you can only scroll
* horizontally.
*/
var isVerticalLocked: Boolean
get() = isVerticalLockedProperty.value
set(value) {
Expand All @@ -126,9 +126,7 @@ open class CameraPane<T : LayoutView<*>>(

internal val isZoomLockedProperty: BooleanProperty = BooleanProperty()

/**
* Determines if the camera pane is locked for zooming, which means that you can only scroll.
*/
/** Determines if the camera pane is locked for zooming, which means that you can only scroll. */
var isZoomLocked: Boolean
get() = isZoomLockedProperty.value
set(value) {
Expand All @@ -138,9 +136,7 @@ open class CameraPane<T : LayoutView<*>>(
internal val panMouseButtonProperty: Property<MouseButtonType> =
Property(MouseButtonType.MOUSE_WHEEL)

/**
* The mouse button that is used to pan the camera pane.
*/
/** The mouse button that is used to pan the camera pane. */
var panMouseButton: MouseButtonType
get() = panMouseButtonProperty.value
set(value) {
Expand Down

0 comments on commit d2a344d

Please sign in to comment.