Update to 3.19.4
This commit is contained in:
		
							parent
							
								
									1c5d657b31
								
							
						
					
					
						commit
						cb6a23b91b
					
				
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @ -124,3 +124,4 @@ gtk+-2.90.5.tar.bz2 | |||||||
| /gtk+-3.19.1.tar.xz | /gtk+-3.19.1.tar.xz | ||||||
| /gtk+-3.19.2.tar.xz | /gtk+-3.19.2.tar.xz | ||||||
| /gtk+-3.19.3.tar.xz | /gtk+-3.19.3.tar.xz | ||||||
|  | /gtk+-3.19.4.tar.xz | ||||||
|  | |||||||
| @ -1,32 +0,0 @@ | |||||||
| From 923ad2767ac722c7e4ec40d0f03ca01283a99b3b Mon Sep 17 00:00:00 2001 |  | ||||||
| From: Benjamin Otte <otte@redhat.com> |  | ||||||
| Date: Wed, 25 Nov 2015 15:25:55 +0100 |  | ||||||
| Subject: [PATCH] window: Don't lose position information |  | ||||||
| 
 |  | ||||||
| Before calling gdk_window_move_resize(), store the full configure |  | ||||||
| request, not just width and height. |  | ||||||
| 
 |  | ||||||
| Fixes firefox randomly losing position of its dropdown windows. |  | ||||||
| 
 |  | ||||||
| https://bugzilla.gnome.org/show_bug.cgi?id=758609 |  | ||||||
| ---
 |  | ||||||
|  gtk/gtkwindow.c | 3 +-- |  | ||||||
|  1 file changed, 1 insertion(+), 2 deletions(-) |  | ||||||
| 
 |  | ||||||
| diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
 |  | ||||||
| index 309a1fe..047ceaf 100644
 |  | ||||||
| --- a/gtk/gtkwindow.c
 |  | ||||||
| +++ b/gtk/gtkwindow.c
 |  | ||||||
| @@ -6121,8 +6121,7 @@ gtk_window_show (GtkWidget *widget)
 |  | ||||||
|         * and gdk_window_resize() below, rather than |  | ||||||
|         * queuing it. |  | ||||||
|         */ |  | ||||||
| -      info->last.configure_request.width = configure_request.width;
 |  | ||||||
| -      info->last.configure_request.height = configure_request.height;
 |  | ||||||
| +      info->last.configure_request = configure_request;
 |  | ||||||
|         |  | ||||||
|        /* and allocate the window - this is normally done |  | ||||||
|         * in move_resize in response to configure notify |  | ||||||
| -- 
 |  | ||||||
| 2.6.3 |  | ||||||
| 
 |  | ||||||
							
								
								
									
										11
									
								
								gtk3.spec
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								gtk3.spec
									
									
									
									
									
								
							| @ -17,8 +17,8 @@ | |||||||
| 
 | 
 | ||||||
| Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X | Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X | ||||||
| Name: gtk3 | Name: gtk3 | ||||||
| Version: 3.19.3 | Version: 3.19.4 | ||||||
| Release: 2%{?dist} | Release: 1%{?dist} | ||||||
| License: LGPLv2+ | License: LGPLv2+ | ||||||
| Group: System Environment/Libraries | Group: System Environment/Libraries | ||||||
| URL: http://www.gtk.org | URL: http://www.gtk.org | ||||||
| @ -26,8 +26,6 @@ URL: http://www.gtk.org | |||||||
| 
 | 
 | ||||||
| Source: http://download.gnome.org/sources/gtk+/3.19/gtk+-%{version}.tar.xz | Source: http://download.gnome.org/sources/gtk+/3.19/gtk+-%{version}.tar.xz | ||||||
| 
 | 
 | ||||||
| Patch0: 0001-window-Don-t-lose-position-information.patch |  | ||||||
| 
 |  | ||||||
| BuildRequires: gnome-common autoconf automake intltool gettext | BuildRequires: gnome-common autoconf automake intltool gettext | ||||||
| BuildRequires: pkgconfig(atk) >= %{atk_version} | BuildRequires: pkgconfig(atk) >= %{atk_version} | ||||||
| BuildRequires: pkgconfig(atk-bridge-2.0) | BuildRequires: pkgconfig(atk-bridge-2.0) | ||||||
| @ -59,6 +57,7 @@ BuildRequires: desktop-file-utils | |||||||
| BuildRequires: pkgconfig(wayland-client) >= %{wayland_version} | BuildRequires: pkgconfig(wayland-client) >= %{wayland_version} | ||||||
| BuildRequires: pkgconfig(wayland-cursor) >= %{wayland_version} | BuildRequires: pkgconfig(wayland-cursor) >= %{wayland_version} | ||||||
| BuildRequires: pkgconfig(wayland-egl) >= %{wayland_version} | BuildRequires: pkgconfig(wayland-egl) >= %{wayland_version} | ||||||
|  | BuildRequires: pkgconfig(wayland-protocols) | ||||||
| BuildRequires: pkgconfig(xkbcommon) | BuildRequires: pkgconfig(xkbcommon) | ||||||
| %endif | %endif | ||||||
| 
 | 
 | ||||||
| @ -168,7 +167,6 @@ the functionality of the installed %{name} package. | |||||||
| 
 | 
 | ||||||
| %prep | %prep | ||||||
| %setup -q -n gtk+-%{version} | %setup -q -n gtk+-%{version} | ||||||
| %patch0 -p1 |  | ||||||
| 
 | 
 | ||||||
| %build | %build | ||||||
| 
 | 
 | ||||||
| @ -341,6 +339,9 @@ gtk-query-immodules-3.0-%{__isa_bits} --update-cache | |||||||
| %{_datadir}/installed-tests | %{_datadir}/installed-tests | ||||||
| 
 | 
 | ||||||
| %changelog | %changelog | ||||||
|  | * Sat Dec 05 2015 Kalev Lember <klember@redhat.com> - 3.19.4-1 | ||||||
|  | - Update to 3.19.4 | ||||||
|  | 
 | ||||||
| * Wed Nov 25 2015 Matthias Clasen <mclasen@redhat.com> - 3.19.3-2 | * Wed Nov 25 2015 Matthias Clasen <mclasen@redhat.com> - 3.19.3-2 | ||||||
| - Fix firefox popup positioning | - Fix firefox popup positioning | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user