Skip to content

Commit

Permalink
Merge pull request #115 from stevenxxiu/feat/require-version-gtk3
Browse files Browse the repository at this point in the history
feat: restrict to *GTK 3* since this doesn't work with *GTK 4*
  • Loading branch information
weslly authored Oct 12, 2021
2 parents 539445c + 53397b2 commit 8772c8b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/linux_colorpicker.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
Gtk = None

try:
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
except ImportError:
try:
Expand Down

0 comments on commit 8772c8b

Please sign in to comment.