Skip to content

Commit

Permalink
Fix Paste In URL Field Not Working on Linux Wayland oleksis/youtube-d…
Browse files Browse the repository at this point in the history
…l-gui #137
  • Loading branch information
oleksis committed Jun 19, 2023
1 parent abd8bec commit ea841f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions youtube_dl_gui/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import os

from .info import (
__appname__,
__author__,
Expand All @@ -13,3 +15,6 @@
__projecturl__,
)
from .version import __version__

if os.environ.get("WAYLAND_DISPLAY"):
os.environ["GDK_BACKEND"] = "x11"
2 changes: 1 addition & 1 deletion youtube_dl_gui/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.8.5"
__version__ = "1.8.6"

0 comments on commit ea841f8

Please sign in to comment.