Mageia Bugzilla – Attachment 7043 Details for
Bug 15030
mageiawelcome: Port to GTK+3 and WebKit2
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
New Account
|
Forgot Password
[patch]
workaround sizing loop issue with gtk+3
0008-workaround-sizing-loop-issue-with-gtk-3.patch (text/plain), 858 bytes, created by
Thierry Vignaud
on 2015-09-23 14:34:21 CEST
(
hide
)
Description:
workaround sizing loop issue with gtk+3
Filename:
MIME Type:
Creator:
Thierry Vignaud
Created:
2015-09-23 14:34:21 CEST
Size:
858 bytes
patch
obsolete
>From 356a11f1ed979c17be44654a56b5c54bd3935d5a Mon Sep 17 00:00:00 2001 >From: Thierry Vignaud <thierry.vignaud@gmail.com> >Date: Wed, 23 Sep 2015 08:22:54 -0400 >Subject: [PATCH 8/8] workaround sizing loop issue with gtk+3 > >by adding a scrolledwindow >--- > usr/share/mageiawelcome/webgui.py | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/usr/share/mageiawelcome/webgui.py b/usr/share/mageiawelcome/webgui.py >index c6888fa..974f8ab 100644 >--- a/usr/share/mageiawelcome/webgui.py >+++ b/usr/share/mageiawelcome/webgui.py >@@ -79,7 +79,8 @@ def launch_browser(html, quit_function=None, echo=True): > settings.set_property('enable-default-context-menu', False) > > box = Gtk.VBox(homogeneous=False, spacing=0) >- window.add(box) >+ sw = Gtk.ScrolledWindow.new(box) >+ window.add(sw) > > > if quit_function is not None: >-- >2.5.3 >
From 356a11f1ed979c17be44654a56b5c54bd3935d5a Mon Sep 17 00:00:00 2001 From: Thierry Vignaud <thierry.vignaud@gmail.com> Date: Wed, 23 Sep 2015 08:22:54 -0400 Subject: [PATCH 8/8] workaround sizing loop issue with gtk+3 by adding a scrolledwindow --- usr/share/mageiawelcome/webgui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr/share/mageiawelcome/webgui.py b/usr/share/mageiawelcome/webgui.py index c6888fa..974f8ab 100644 --- a/usr/share/mageiawelcome/webgui.py +++ b/usr/share/mageiawelcome/webgui.py @@ -79,7 +79,8 @@ def launch_browser(html, quit_function=None, echo=True): settings.set_property('enable-default-context-menu', False) box = Gtk.VBox(homogeneous=False, spacing=0) - window.add(box) + sw = Gtk.ScrolledWindow.new(box) + window.add(sw) if quit_function is not None: -- 2.5.3
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 15030
:
7036
|
7037
|
7038
|
7039
|
7040
|
7041
|
7042
| 7043