In my program, there is a point where all widgets are hidden. Is there a simple way to show a widget and all of its parent containers? I am not able to use show_all(), because that would show other widgets that I don’t want shown. I could go down the containers and show them all, but I would prefer not to if there is a more concise solution.
In my program, there is a point where all widgets are hidden. Is there
Share
Other than iterating through
Widget.get_parentandshowing them all, you can also set theno-show-allproperty on the widgets you don’t want shown, and callshow_allon the ancestor.