File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,11 @@ def render_variable_tree(variables):
7171def 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`" )
You can’t perform that action at this time.
0 commit comments