Dominique Leuenberger
66b57b3842
Add upstream bug fix patches OBS-URL: https://build.opensuse.org/request/show/661682 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/epiphany?expand=0&rev=305
32 lines
874 B
Diff
32 lines
874 B
Diff
From db22b3e699cfa595746fc4c707de3db1fec1c969 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Kang <jonathankang@gnome.org>
|
|
Date: Mon, 5 Nov 2018 13:08:03 +0000
|
|
Subject: [PATCH] window: set correct current height
|
|
|
|
Fixes 9c3b0a6f
|
|
|
|
https://gitlab.gnome.org/GNOME/epiphany/issues/571
|
|
|
|
|
|
(cherry picked from commit 408d2118cceb4cade781087cc27bfc0d4b930c6e)
|
|
---
|
|
src/ephy-window.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/ephy-window.c b/src/ephy-window.c
|
|
index d0c0f3d04..a5bfda433 100644
|
|
--- a/src/ephy-window.c
|
|
+++ b/src/ephy-window.c
|
|
@@ -2808,7 +2808,7 @@ ephy_window_configure_event (GtkWidget *widget,
|
|
&window->current_x,
|
|
&window->current_y);
|
|
window->current_width = width;
|
|
- window->current_width = height;
|
|
+ window->current_height = height;
|
|
}
|
|
|
|
return result;
|
|
--
|
|
2.18.1
|
|
|