File tree 1 file changed +8
-1
lines changed
Filter options
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):
71
71
def pov ():
72
72
with hd .hbox (gap = 1 , justify = "space-around" , border = "0px solid red" , padding = 0.8 ):
73
73
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" ,
75
79
):
76
80
hd .markdown ("## Python Object Viewer" )
77
81
hd .divider (spacing = 0.4 , thickness = 0 )
@@ -81,8 +85,11 @@ def pov():
81
85
82
86
if dap_task .running :
83
87
hd .markdown ("### Waiting for variables..." )
88
+ hd .markdown (" " ) # hack to add some space
84
89
with hd .hbox (font_size = 4 , justify = "space-around" ):
85
90
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." )
86
93
87
94
if dap_task .error :
88
95
hd .markdown ("`Error collecting variables`" )
You can’t perform that action at this time.
0 commit comments