Skip to content

Commit 1b0874a

Browse files
committed
wip
1 parent c50729d commit 1b0874a

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

pov.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff 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

151165
hd.run(
152166
pov,

0 commit comments

Comments
 (0)