summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2020-09-11 10:04:55 +0200
committerLars Wendler <polynomial-c@gentoo.org>2020-09-11 10:08:59 +0200
commit29b588944a03fb6f123226952666c5b0a3f99d86 (patch)
tree837e6c4d3c9ff4a310542f1e474f4ef0c3ffdffa /games-util/lutris/files
parentgames-emulation/dolphin: allow new rangeset depend (diff)
downloadgentoo-29b588944a03fb6f123226952666c5b0a3f99d86.tar.gz
gentoo-29b588944a03fb6f123226952666c5b0a3f99d86.tar.bz2
gentoo-29b588944a03fb6f123226952666c5b0a3f99d86.zip
games-util/lutris: Bump to version 0.5.7.1
Converted to only use a single python implementation in order to avoid bug #740048 Thanks-to: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org> Closes: https://bugs.gentoo.org/733828 Closes: https://bugs.gentoo.org/740048 Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'games-util/lutris/files')
-rw-r--r--games-util/lutris/files/lutris-0.5.7-copy_paste_fix.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/games-util/lutris/files/lutris-0.5.7-copy_paste_fix.patch b/games-util/lutris/files/lutris-0.5.7-copy_paste_fix.patch
new file mode 100644
index 000000000000..3e278561aa3b
--- /dev/null
+++ b/games-util/lutris/files/lutris-0.5.7-copy_paste_fix.patch
@@ -0,0 +1,38 @@
+From 9603da9d4eda1656219a4c79e1f9d1a958165151 Mon Sep 17 00:00:00 2001
+From: Austin Pua <pua.austin.anderson@gmail.com>
+Date: Wed, 1 Jul 2020 21:48:09 +0800
+Subject: [PATCH] Fix copy paste issue in auth webviews
+
+---
+ lutris/services/gog.py | 3 ++-
+ lutris/services/humblebundle.py | 3 ++-
+ 2 files changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/lutris/services/gog.py b/lutris/services/gog.py
+index 0eed7778c..099f9083d 100644
+--- a/lutris/services/gog.py
++++ b/lutris/services/gog.py
+@@ -279,7 +279,8 @@ def connect(parent=None):
+ """Connect to GOG"""
+ logger.debug("Connecting to GOG")
+ dialog = WebConnectDialog(SERVICE, parent)
+- dialog.run()
++ dialog.set_modal(True)
++ dialog.show()
+
+
+ def disconnect():
+diff --git a/lutris/services/humblebundle.py b/lutris/services/humblebundle.py
+index 6dcfe6911..056ef9460 100644
+--- a/lutris/services/humblebundle.py
++++ b/lutris/services/humblebundle.py
+@@ -152,7 +152,8 @@ def is_connected():
+ def connect(parent=None):
+ """Connect to Humble Bundle"""
+ dialog = WebConnectDialog(SERVICE, parent)
+- dialog.run()
++ dialog.set_modal(True)
++ dialog.show()
+
+
+ def disconnect():