We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d8a905 commit a1f2f8bCopy full SHA for a1f2f8b
src/textual/widget.py
@@ -370,14 +370,10 @@ class Widget(DOMNode):
370
scroll_target_y = Reactive(0.0, repaint=False)
371
"""Scroll target destination, Y coord."""
372
373
- show_vertical_scrollbar: Reactive[bool] = Reactive(
374
- False, layout=False, repaint=False
375
- )
+ show_vertical_scrollbar: Reactive[bool] = Reactive(False, layout=True)
376
"""Show a vertical scrollbar?"""
377
378
- show_horizontal_scrollbar: Reactive[bool] = Reactive(
379
380
+ show_horizontal_scrollbar: Reactive[bool] = Reactive(False, layout=True)
381
"""Show a horizontal scrollbar?"""
382
383
border_title = _BorderTitle() # type: ignore
0 commit comments