Skip to content

Commit

Permalink
enable gtk3 by default for python3
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@6188 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Apr 27, 2014
1 parent dfbbf50 commit 676bc38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ def get_status_output(*args, **kwargs):

x11_ENABLED = not WIN32 and not OSX and not PYTHON3
argb_ENABLED = True
gtk2_ENABLED = client_ENABLED
gtk3_ENABLED = False
gtk2_ENABLED = client_ENABLED and not PYTHON3
gtk3_ENABLED = PYTHON3
qt4_ENABLED = False
opengl_ENABLED = client_ENABLED
html5_ENABLED = not WIN32 and not OSX
Expand Down

0 comments on commit 676bc38

Please sign in to comment.