Fix another GTK3 related bug
This commit is contained in:
parent
3dd794cde3
commit
c5b91e6553
@ -0,0 +1,42 @@
|
|||||||
|
From 72e0ca0aa2a90a05045eec9cdbc632fcedaac924 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mamoru TASAKA <mtasaka@fedoraproject.org>
|
||||||
|
Date: Sun, 24 May 2015 00:28:49 +0900
|
||||||
|
Subject: [PATCH] choose-icon.ui: remove no longer supported property
|
||||||
|
|
||||||
|
GtkDialog.has_separator has been deprecated since
|
||||||
|
GTK+ 2.22 and no longer supported on GTK 3.
|
||||||
|
Note that the default is false, no removing this has
|
||||||
|
no effect.
|
||||||
|
https://developer.gnome.org/gtk2/stable/GtkDialog.html#GtkDialog--has-separator
|
||||||
|
|
||||||
|
GtkIconView.orientation is deprecated since GTK+ 2.22
|
||||||
|
and now item-orientation should be used. GTK 3 no longer
|
||||||
|
supports orientation.
|
||||||
|
---
|
||||||
|
data/ui/choose-icon.ui | 3 +--
|
||||||
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/data/ui/choose-icon.ui b/data/ui/choose-icon.ui
|
||||||
|
index 32375b5..812c3a4 100644
|
||||||
|
--- a/data/ui/choose-icon.ui
|
||||||
|
+++ b/data/ui/choose-icon.ui
|
||||||
|
@@ -16,7 +16,6 @@
|
||||||
|
<property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
|
||||||
|
<property name="focus_on_map">True</property>
|
||||||
|
<property name="urgency_hint">False</property>
|
||||||
|
- <property name="has_separator">False</property>
|
||||||
|
<child internal-child="vbox">
|
||||||
|
<object class="GtkVBox" id="dialog-vbox1">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
@@ -164,7 +163,7 @@
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can_focus">True</property>
|
||||||
|
<property name="selection_mode">GTK_SELECTION_SINGLE</property>
|
||||||
|
- <property name="orientation">GTK_ORIENTATION_VERTICAL</property>
|
||||||
|
+ <property name="item-orientation">GTK_ORIENTATION_VERTICAL</property>
|
||||||
|
<property name="reorderable">False</property>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
--
|
||||||
|
2.4.1
|
||||||
|
|
@ -8,7 +8,7 @@
|
|||||||
%global prerpmver %(echo "%{?prever}" | sed -e 's|-||g')
|
%global prerpmver %(echo "%{?prever}" | sed -e 's|-||g')
|
||||||
|
|
||||||
%global usegit 1
|
%global usegit 1
|
||||||
%global mainrel 6
|
%global mainrel 7
|
||||||
|
|
||||||
%global githash 577806e29d2ec27ce5fee9dc816566fb4e23b155
|
%global githash 577806e29d2ec27ce5fee9dc816566fb4e23b155
|
||||||
%global shorthash %(TMP=%githash ; echo ${TMP:0:10})
|
%global shorthash %(TMP=%githash ; echo ${TMP:0:10})
|
||||||
@ -45,6 +45,8 @@ Patch101: 0001-Make-file-search-dialog-work-with-GTK3.patch
|
|||||||
Patch102: 0002-Fix-gdk_window_get_device_position-device-argument.patch
|
Patch102: 0002-Fix-gdk_window_get_device_position-device-argument.patch
|
||||||
# http://sourceforge.net/p/pcmanfm/bugs/961/
|
# http://sourceforge.net/p/pcmanfm/bugs/961/
|
||||||
Patch103: 0003-exec-file.glade-remove-has_separator-property-from-G.patch
|
Patch103: 0003-exec-file.glade-remove-has_separator-property-from-G.patch
|
||||||
|
# http://sourceforge.net/p/pcmanfm/bugs/962/
|
||||||
|
Patch104: 0004-choose-icon.ui-remove-no-longer-supported-property.patch
|
||||||
|
|
||||||
BuildRequires: libexif-devel
|
BuildRequires: libexif-devel
|
||||||
BuildRequires: gtk3-devel
|
BuildRequires: gtk3-devel
|
||||||
@ -147,6 +149,7 @@ This package containg development documentation files for %{name}.
|
|||||||
%patch101 -p1
|
%patch101 -p1
|
||||||
%patch102 -p1
|
%patch102 -p1
|
||||||
%patch103 -p1
|
%patch103 -p1
|
||||||
|
%patch104 -p1
|
||||||
|
|
||||||
%if 0%{?usegit} >= 1
|
%if 0%{?usegit} >= 1
|
||||||
sh autogen.sh
|
sh autogen.sh
|
||||||
@ -291,6 +294,9 @@ update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null || :
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun May 24 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.3-7.D20150521git577806e29d
|
||||||
|
- Fix another GTK3 related bug
|
||||||
|
|
||||||
* Sat May 23 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.3-6.D20150521git577806e29d
|
* Sat May 23 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.2.3-6.D20150521git577806e29d
|
||||||
- Fix two other GTK3 related bugs
|
- Fix two other GTK3 related bugs
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user