diff options
author | Yuri Konotopov <ykonotopov@gnome.org> | 2017-06-26 16:39:28 +0400 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-06-27 22:56:20 +1000 |
commit | f76071ffeadfaaaa771cc1bb830f283acb5854b0 (patch) | |
tree | 04ee4fd98581bdc58848783e65a2983128121c42 /net-news/liferea/files | |
parent | app-admin/filebeat: bump to 5.4.2, drop old (diff) | |
download | gentoo-f76071ffeadfaaaa771cc1bb830f283acb5854b0.tar.gz gentoo-f76071ffeadfaaaa771cc1bb830f283acb5854b0.tar.bz2 gentoo-f76071ffeadfaaaa771cc1bb830f283acb5854b0.zip |
net-news/liferea: fixed external browser option.
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=622638
Diffstat (limited to 'net-news/liferea/files')
-rw-r--r-- | net-news/liferea/files/liferea-1.12_rc3-signal.patch | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/net-news/liferea/files/liferea-1.12_rc3-signal.patch b/net-news/liferea/files/liferea-1.12_rc3-signal.patch new file mode 100644 index 000000000000..56fa5a8cce64 --- /dev/null +++ b/net-news/liferea/files/liferea-1.12_rc3-signal.patch @@ -0,0 +1,66 @@ +From b08641b21bdb590770e10bad873666aedf4ae306 Mon Sep 17 00:00:00 2001 +From: leiaz <leiaz@free.fr> +Date: Sun, 14 May 2017 20:08:39 +0200 +Subject: [PATCH] Fixes #500 Connects browser entry to callback + +Glade copy/paste doesn't copy the signals/callbacks part. I missed that +one when updating the ui file. +--- + glade/prefs.ui | 24 ++++++++++++++---------- + 1 file changed, 14 insertions(+), 10 deletions(-) + +diff --git a/glade/prefs.ui b/glade/prefs.ui +index b5b97bac0..65d055986 100644 +--- a/glade/prefs.ui ++++ b/glade/prefs.ui +@@ -736,16 +736,6 @@ + </packing> + </child> + <child> +- <object class="GtkComboBox" id="browserpopup"> +- <property name="visible">True</property> +- <property name="can_focus">False</property> +- </object> +- <packing> +- <property name="left_attach">1</property> +- <property name="top_attach">1</property> +- </packing> +- </child> +- <child> + <object class="GtkLabel" id="manuallabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> +@@ -765,6 +755,7 @@ + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="activates_default">True</property> ++ <signal name="changed" handler="on_browsercmd_changed" swapped="no"/> + </object> + <packing> + <property name="left_attach">1</property> +@@ -787,6 +778,16 @@ + </packing> + </child> + <child> ++ <object class="GtkComboBox" id="browserpopup"> ++ <property name="visible">True</property> ++ <property name="can_focus">False</property> ++ </object> ++ <packing> ++ <property name="left_attach">1</property> ++ <property name="top_attach">1</property> ++ </packing> ++ </child> ++ <child> + <placeholder/> + </child> + </object> +@@ -1422,5 +1423,8 @@ + <action-widgets> + <action-widget response="-7">prefclosebtn</action-widget> + </action-widgets> ++ <child> ++ <placeholder/> ++ </child> + </object> + </interface> |