File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
src/visualizer/visualizer Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -527,14 +527,11 @@ def __init__(self, channel):
527527 @return none
528528 """
529529 self .channel = channel
530- self .canvas_item = GooCanvas .CanvasEllipse ()
531- self .canvas_item .radius_x = 30
532- self .canvas_item .radius_y = 30
533- self .canvas_item .fill_color = "white"
534- self .canvas_item .stroke_color = "grey"
535- self .canvas_item .line_width = "2.0"
536- self .canvas_item .line_dash = GooCanvas .CanvasLineDash ([10.0 , 10.0 ])
537- self .canvas_item .visibility = GooCanvas .CanvasItemVisibility .VISIBLE
530+ self .canvas_item = GooCanvas .CanvasEllipse (radius_x = 30 , radius_y = 30 ,
531+ fill_color = "white" ,
532+ stroke_color = "grey" , line_width = 2.0 ,
533+ line_dash = GooCanvas .CanvasLineDash .newv ([10.0 , 10.0 ]),
534+ visibility = GooCanvas .CanvasItemVisibility .VISIBLE )
538535 self .canvas_item .pyviz_object = self
539536 self .links = []
540537
You can’t perform that action at this time.
0 commit comments