Changeset 4442

Show
Ignore:
Timestamp:
04/05/09 13:07:29 (4 years ago)
Author:
gpolo
Message:

Fixing mistake in set_no_show_all usage.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/umit/gui/radialnet/ControlWidget.py

    r4441 r4442  
    597597        """ 
    598598        """ 
    599         activated = self.__options_button.get_active() 
    600         self.__params_options.set_no_show_all(not activated) 
    601  
    602         if activated: 
     599        self.__params_options.set_no_show_all(False) 
     600 
     601        if self.__options_button.get_active(): 
    603602            self.__params_options.show_all() 
    604603        else: 
    605604            self.__params_options.hide_all() 
     605 
     606        self.__params_options.set_no_show_all(True) 
    606607 
    607608