diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-03-03 10:28:17 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-03-03 10:28:17 +0000 |
commit | d99093fb4bb5652015c06274d64083daa2439e4f (patch) | |
tree | cf61513204d97974179580065e85df5c8009087c /games-util/lutris | |
parent | 463397cf1e064185110fe57c568d73f99a06f5d1 (diff) |
gentoo resync : 03.03.2021
Diffstat (limited to 'games-util/lutris')
-rw-r--r-- | games-util/lutris/Manifest | 1 | ||||
-rw-r--r-- | games-util/lutris/files/lutris-0.5.7-copy_paste_fix.patch | 38 |
2 files changed, 0 insertions, 39 deletions
diff --git a/games-util/lutris/Manifest b/games-util/lutris/Manifest index b91ba05f9e94..6ef87e5a15df 100644 --- a/games-util/lutris/Manifest +++ b/games-util/lutris/Manifest @@ -1,4 +1,3 @@ -AUX lutris-0.5.7-copy_paste_fix.patch 1178 BLAKE2B fcb28456fb0ced4e7f53156bbaed799d7673c57e02d8dd04261ffc99f2b585819b920870af48806ba461d9a5130cf9aa3696dfa2615c7f54d54871a3abacbf6b SHA512 5d42c46b159962e1a77ba7c21d4ea47a8507548e6d62b516228b45cdd4d36abd4dd56cf81079edaf32f61c2a849f6d1491f2dc5b0dd7c7a817ba822499104317 DIST lutris_0.5.8.1.tar.xz 893328 BLAKE2B 67c66b59c3fa78af46f953b6e27fb3dd77d0e4cb0746f490716c7c074e81afa4f9c4e8c10dc6d4dab3e2b37d03254bae5eda0b777da72bc17f18dda5fd1f990a SHA512 da3b5ebf3e5dcc5011351197c5a80e8547e54df4555ea9124a8404877c5b75225cfae970819a171c55454fef73afdd927dafbf427301b71618c33660a1c8c022 DIST lutris_0.5.8.3.tar.xz 942716 BLAKE2B f831c6ad6f67c3948f07e89f9caacd0d8aa3878b912fe987afea85eea549f41347044967255fa80e4e0c4544d148d9782dfe3c5bf08a123436e8a5ef7034901f SHA512 8f653d38a9a551298fa344cde67d53bf50cfd2a0a0667e344d04f6e17dda4ef358037755975d1a7f74ecd39824d58f9586e8a82b70dccc26619f22fee94d1144 EBUILD lutris-0.5.8.1.ebuild 1875 BLAKE2B d5dc302137dedfad59d8e34104d8fd74d6f1ae075e14bb29755327e6146d7dab64f247fb232f6d3604c96c5e054fe620ba6cc8887e8770a04026823f2c9d1079 SHA512 be64891a7086e29a5e1f953d6e52144eb9957a36c3c86351cc7c4e4f0d954a16475cdee4439f347071ef4de261b1b0a2b330f8024f0b790ce2fb60909bb91474 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(): |