Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ae99766

Browse filesBrowse files
committed
wip
1 parent 93046f5 commit ae99766
Copy full SHA for ae99766

File tree

1 file changed

+8
-1
lines changed
Filter options

1 file changed

+8
-1
lines changed

‎pov.py

Copy file name to clipboardExpand all lines: pov.py
+8-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.