Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/electrum/files: 1.9.8-gtk3-fix.patch
Date: Sun, 01 Mar 2015 13:42:17
Message-Id: 20150301134211.C80BA12CEE@oystercatcher.gentoo.org
1 blueness 15/03/01 13:42:11
2
3 Added: 1.9.8-gtk3-fix.patch
4 Log:
5 Fix bug #510688 and #509028
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
8
9 Revision Changes Path
10 1.1 net-misc/electrum/files/1.9.8-gtk3-fix.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/electrum/files/1.9.8-gtk3-fix.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/electrum/files/1.9.8-gtk3-fix.patch?rev=1.1&content-type=text/plain
14
15 Index: 1.9.8-gtk3-fix.patch
16 ===================================================================
17 --- Electrum-1.9.8/gui/gtk.py 2014-03-11 14:12:31.000000000 +0000
18 +++ Electrum-1.9.8/gui/gtk.py 2015-03-01 08:01:02.851740805 +0000
19 @@ -87,7 +87,7 @@
20 # ask if the user wants to create a new wallet, or recover from a seed.
21 # if he wants to recover, and nothing is found, do not create wallet
22 dialog = Gtk.Dialog("electrum", parent=None,
23 - flags=Gtk.DialogFlags.MODAL|Gtk.DialogFlags.NO_SEPARATOR,
24 + flags=Gtk.DialogFlags.MODAL | getattr(Gtk.DialogFlags, 'NO_SEPARATOR', 0),
25 buttons= ("create", 0, "restore",1, "cancel",2) )
26
27 label = Gtk.Label("Wallet file not found.\nDo you want to create a new wallet,\n or to restore an existing one?" )