view = panel
Opened this issue · 1 comments
mottosso commented
Goal
Clarify what is actually being parsed and applied. The current use of "view" is synonymous to "panel"; specifically, "modelPanel".
# Before
capture.parse_active_view()
capture.parse_view("modelPanel1")
# After
capture.parse_active_panel()
capture.parse_panel("modelPanel1")
BigRoy commented
Sounds good. +1
With this keep in mind to update the examples in README.md
as well.