Skip to content

Commit ae99766

Browse files
committed
wip
1 parent 93046f5 commit ae99766

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pov.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,11 @@ def render_variable_tree(variables):
7171
def pov():
7272
with hd.hbox(gap=1, justify="space-around", border="0px solid red", padding=0.8):
7373
with hd.box(
74-
font_size=1, gap=0, justify="space-around", border="0px solid yellow"
74+
font_size=1,
75+
gap=0,
76+
justify="space-around",
77+
border="0px solid yellow",
78+
align="center",
7579
):
7680
hd.markdown("## Python Object Viewer")
7781
hd.divider(spacing=0.4, thickness=0)
@@ -81,8 +85,11 @@ def pov():
8185

8286
if dap_task.running:
8387
hd.markdown("### Waiting for variables...")
88+
hd.markdown(" ") # hack to add some space
8489
with hd.hbox(font_size=4, justify="space-around"):
8590
hd.spinner(speed="5s", track_width=0.5)
91+
hd.markdown(" ") # hack to add some space
92+
hd.markdown("This can take a couple of minutes.")
8693

8794
if dap_task.error:
8895
hd.markdown("`Error collecting variables`")

0 commit comments

Comments
 (0)