[pitivi] effects: Manually show widgets in the effects tab



commit 40ec3cb7cc0d34512fa27e85970107889488802e
Author: Jean-FranÃois Fortin Tam <nekohayo gmail com>
Date:   Mon Aug 6 15:05:11 2012 -0400

    effects: Manually show widgets in the effects tab
    
    This fixes a small regression introduced by commit edeb4e1

 pitivi/effects.py |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/pitivi/effects.py b/pitivi/effects.py
index acafb27..acaefdc 100644
--- a/pitivi/effects.py
+++ b/pitivi/effects.py
@@ -451,7 +451,11 @@ class EffectListWidget(gtk.VBox, Loggable):
 
         self.show_categories(VIDEO_EFFECT)
 
-        self.show_all()
+        # Individually show the tab's widgets.
+        # If you use self.show_all(), the tab will steal focus on startup.
+        hfilters.show_all()
+        hsearch.show_all()
+        scrollwin.show_all()
 
     @staticmethod
     def view_description_cell_data_func(column, cell, model, iter_, data):



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]