diff --git a/ccsm.spec b/ccsm.spec index b1b723f..21a12a3 100644 --- a/ccsm.spec +++ b/ccsm.spec @@ -6,7 +6,7 @@ Name: ccsm Version: 0.8.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Plugin and configuration tool - Compiz Fusion Project Group: User Interface/Desktops @@ -17,6 +17,7 @@ Source0: http://releases.compiz-fusion.org/%{version}/%{name}-%{version}. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Patch101: ccsm-removeshebangs.patch Patch102: widgets_filter.patch +Patch103: widget_dialog.patch # libdrm is not available on these arches ExcludeArch: s390 s390x ppc64 @@ -38,6 +39,7 @@ plugins and the composite window manager. %setup -q %patch101 -p1 -b .ccsm-removeshebangs %patch102 -p1 -b .widgets_filter +%patch103 -p1 -b .widget_dialog %build #configure @@ -86,6 +88,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun May 6 2010 Leigh Scott - 0.8.4-3 +- add widget_dialog patch (Bz 589677) + * Sat May 1 2010 Leigh Scott - 0.8.4-2 - update python marcos - add widgets_filter patch (Bz 553665) diff --git a/widget_dialog.patch b/widget_dialog.patch new file mode 100644 index 0000000..8cc2b0b --- /dev/null +++ b/widget_dialog.patch @@ -0,0 +1,17 @@ +--- ccsm-0.8.4.orig/ccm/Widgets.py 2009-10-14 02:05:30.000000000 +0100 ++++ ccsm-0.8.4/ccm/Widgets.py 2010-05-06 21:51:05.000000000 +0100 +@@ -1193,13 +1193,13 @@ class MatchButton(gtk.Button): + dlg.show_all () + + response = dlg.run () +- dlg.destroy () + if response == gtk.RESPONSE_OK: + type = type_chooser.get_active_text () + value = entry.get_text () + relation = relation_chooser.get_active_text () + invert = check.get_active () + self.generate_match (type, value, relation, invert) ++ dlg.destroy () + + class FileButton (gtk.Button): + __gsignals__ = {"changed" : (gobject.SIGNAL_RUN_FIRST,