Fade out Label / Button / Status Bar with GTK
- by wolfv
What is the easiest way to fade out and fade in elements in Python / GTK 3?
Coming from webdevelopment, my initial take on this problem was to call
c = widget.get_style_context(), c.remove_class('visible'), c.add_class('invisible')
but that didn't work out (Do I have to call something like "redraw"?)
I also added a transition to the GTK CSS.…