Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/emc/usr_intf/gremlin/gremlin.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
from gi.repository import GObject
from gi.repository import GLib

# Fix for Wayland environments
import os
os.environ.setdefault('PYOPENGL_PLATFORM', 'x11')

import sys
from OpenGL.GL import *
from OpenGL.GLU import *
Expand Down Expand Up @@ -150,7 +154,6 @@
import re
import tempfile
import shutil
import os

import _thread

Expand Down