diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-02-17 17:12:06 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-02-17 20:32:53 +0100 |
commit | d00f89b8fe0f572d61b4c5a769a4dc9880582de4 (patch) | |
tree | 8c382fc588fda1d503fbd20fcb5487aebffb3dac /games-util/lutris | |
parent | net-dns/pdnsd: remove unused patch (diff) | |
download | gentoo-d00f89b8fe0f572d61b4c5a769a4dc9880582de4.tar.gz gentoo-d00f89b8fe0f572d61b4c5a769a4dc9880582de4.tar.bz2 gentoo-d00f89b8fe0f572d61b4c5a769a4dc9880582de4.zip |
games-util/lutris: remove unused patch(es)
Closes: https://github.com/gentoo/gentoo/pull/19502
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'games-util/lutris')
-rw-r--r-- | games-util/lutris/files/lutris-0.5.7-copy_paste_fix.patch | 38 |
1 files changed, 0 insertions, 38 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 deleted file mode 100644 index 3e278561aa3b..000000000000 --- a/games-util/lutris/files/lutris-0.5.7-copy_paste_fix.patch +++ /dev/null @@ -1,38 +0,0 @@ -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(): |