@@ -475,11 +475,6 @@ def createWidgetsSimple(self, master):
475475 for key in self .PARAMETERS_KEYS :
476476 self .config_dict [key ] = tk .StringVar ()
477477
478- ttk .Separator (button_fen ,
479- orient = tk .HORIZONTAL ).grid (columnspan = 2 ,
480- sticky = tk .E + tk .W ,
481- pady = 5 )
482-
483478 tk .Label (button_fen ,
484479 text = "Reference channel" ).\
485480 grid (row = 90 , column = 0 , rowspan = self .avh ._nr_spec_connected )
@@ -491,6 +486,11 @@ def createWidgetsSimple(self, master):
491486 variable = self .referenceChannel ,
492487 value = avsHandle ).grid (row = 90 + i , column = 1 )
493488
489+ ttk .Separator (button_fen ,
490+ orient = tk .HORIZONTAL ).grid (columnspan = 2 ,
491+ sticky = tk .E + tk .W ,
492+ pady = 5 )
493+
494494 self .processing_text = tk .Label (
495495 button_fen , text = "No running experiment..." )
496496
@@ -558,7 +558,7 @@ def set_black(self):
558558 while n_black < p_N_c :
559559 self .processing_text ["text" ] = "Processing black :\n " \
560560 + "\t Average : {}/{}" .format (n_black , p_N_c )
561-
561+ self . update ()
562562 self ._bnc .sendtrig ()
563563 self .after (int (p_T_tot ))
564564 self .update ()
@@ -603,6 +603,7 @@ def set_white(self):
603603
604604 self .processing_text ["text" ] = "Processing white :\n " \
605605 + "\t Average : {}/{}" .format (n_white , p_N_c )
606+ self .update ()
606607
607608 self ._bnc .sendtrig ()
608609 self .after (int (p_T_tot ))
0 commit comments