diff options
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/window/Window.kt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/window/Window.kt b/src/main/kotlin/pl/treksoft/kvision/window/Window.kt index 9607b01d..4a7e6ded 100644 --- a/src/main/kotlin/pl/treksoft/kvision/window/Window.kt +++ b/src/main/kotlin/pl/treksoft/kvision/window/Window.kt @@ -94,6 +94,14 @@ open class Window( content.height = value } /** + * Window content height. + */ + var contentOverflow + get() = content.overflow + set(value) { + content.overflow = value + } + /** * Determines if the window is resizable. */ var isResizable by refreshOnUpdate(isResizable, { checkIsResizable() }) |