mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
9ac6401366
No idea which patch(es) fixes the segfault, don't really care to find out. Signed-off-by: Erik Hanson <erik@slackbuilds.org>
21 lines
766 B
Diff
21 lines
766 B
Diff
From 464ec9077f4bc709e50c83372c9d4e1703533efa Mon Sep 17 00:00:00 2001
|
|
From: Carlos Garcia Campos <carlosgc@gnome.org>
|
|
Date: Sun, 20 Feb 2011 10:29:19 +0000
|
|
Subject: libview: Use a popup window instead of a toplevel for loading window
|
|
|
|
Fixes focus stealing when scrolling. See bug #633475.
|
|
---
|
|
diff --git a/libview/ev-loading-window.c b/libview/ev-loading-window.c
|
|
index b413431..94576ee 100644
|
|
--- a/libview/ev-loading-window.c
|
|
+++ b/libview/ev-loading-window.c
|
|
@@ -266,6 +266,7 @@ ev_loading_window_new (GtkWindow *parent)
|
|
g_return_val_if_fail (GTK_IS_WINDOW (parent), NULL);
|
|
|
|
window = g_object_new (EV_TYPE_LOADING_WINDOW,
|
|
+ "type", GTK_WINDOW_POPUP,
|
|
"parent", parent,
|
|
NULL);
|
|
return window;
|
|
--
|
|
cgit v0.9
|