[pitivi] Use GTK3's ComboBoxText widgets for the effects list
- From: Jean-FranÃois Fortin Tam <jfft src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi] Use GTK3's ComboBoxText widgets for the effects list
- Date: Sun, 2 Sep 2012 03:58:59 +0000 (UTC)
commit 4076ffd2321282d95b9cc837c4595978bc64f491
Author: Jean-FranÃois Fortin Tam <nekohayo gmail com>
Date: Tue Jul 31 00:06:27 2012 +0200
Use GTK3's ComboBoxText widgets for the effects list
pitivi/effects.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/pitivi/effects.py b/pitivi/effects.py
index 5b60f7e..d0f7e91 100644
--- a/pitivi/effects.py
+++ b/pitivi/effects.py
@@ -362,10 +362,10 @@ class EffectListWidget(gtk.VBox, Loggable):
hfilters = gtk.HBox()
hfilters.set_spacing(SPACING)
hfilters.set_border_width(3) # Prevents being flush against the notebook
- self.effectType = gtk.combo_box_new_text()
+ self.effectType = gtk.ComboBoxText()
self.effectType.append_text(_("Video effects"))
self.effectType.append_text(_("Audio effects"))
- self.effectCategory = gtk.combo_box_new_text()
+ self.effectCategory = gtk.ComboBoxText()
self.effectType.set_active(VIDEO_EFFECT)
hfilters.pack_start(self.effectType, expand=True)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]