-
Notifications
You must be signed in to change notification settings - Fork 578
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix:Do not set GDK_BACKEND to x11 in terminals. #1911
Conversation
c469460
to
3176b24
Compare
guake/terminal.py
Outdated
@@ -121,6 +121,10 @@ def __init__(self, guake): | |||
|
|||
self.setup_drag_and_drop() | |||
|
|||
exclude = {"GDK_BACKEND"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we may put this as a constant?
self.ENVV_EXCLUDE_LIST = ["GDK_BACKEND"]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright, sure, could be useful at some point.
3176b24
to
09a2b48
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Function test pass, LGTM.
Only a small point, please help remove duplicate commit title in commit message.
Done. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but I forgot one thing (I thought it is like GitLab...), please also put Fixed: #1871
in commit message!
Then it is good to merge.
Don't automatically inherit env variables and manually pass modified env Fixes Guake#1871
eh alright done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, LGTM
I just find out that merge commit will be editable after I click merge..., so basically my last request can be added in merge commit next time 💯 |
Do not set GDK_BACKEND to x11 in terminals.
Don't automatically inherit env variables and manually pass modified env
Fixes #1871