File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,9 @@ def pov():
8787 hd .divider (spacing = 0.4 , thickness = 0 )
8888
8989 dap_task = hd .task ()
90- dap_task .run (lambda : dap_client (depth_limit = 2 ))
90+ dap_task .run (
91+ lambda : dap_client (depth_limit = 3 )
92+ ) # TODO: make this a dropdown/similar
9193
9294 if dap_task .running :
9395 hd .markdown ("### Waiting for variables..." )
@@ -147,6 +149,18 @@ def pov():
147149 scope_vars , title = f"{ scope_name .title ()} Scope"
148150 )
149151
152+ # Dropdown for selecting the depth limit
153+ # with hd.box(gap=1):
154+ # with hd.select(
155+ # placeholder="Depth Limit",
156+ # ) as select:
157+ # hd.option("1")
158+ # hd.option("2")
159+ # hd.option("3")
160+ # hd.option("4")
161+ # hd.option("5")
162+ # hd.text("Selected:", select.value)
163+
150164
151165hd .run (
152166 pov ,
You can’t perform that action at this time.
0 commit comments