Add a scroll bar to the settings panel if screen height is too small
This commit is contained in:
parent
76fd751a6a
commit
ae2940ff38
|
@ -14,6 +14,7 @@ To take advantage of the more granular timing info in this version, you will nee
|
|||
### Fixed
|
||||
|
||||
* View and subscription runtime now only measures self time instead of elapsed time, i.e. we subtract the time of any child subcriptions/renders.
|
||||
* Settings panel has a scroll bar if your screen height is too small.
|
||||
|
||||
## [0.1.19] - 2018-02-09
|
||||
|
||||
|
|
|
@ -149,7 +149,7 @@
|
|||
[rc/v-box
|
||||
:size "auto"
|
||||
:style {:margin-left common/gs-19s
|
||||
:overflow-y (if (contains? #{:timing :debug :event :subs} @selected-tab)
|
||||
:overflow-y (if (contains? #{:timing :debug :event :subs :settings} @selected-tab)
|
||||
"auto" "initial")
|
||||
;:overflow "auto" ;; TODO: Might have to put this back or add scrolling within the panels
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue