diff options
author | Papoteur <papoteur@mageia.org> | 2018-12-27 18:32:15 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2018-12-28 08:44:48 +0100 |
commit | 2acb375b08d6117ce2d361bbc119f5ed32b5c1f9 (patch) | |
tree | 2ca35ccb190624ea50e1687a36d500c0a4b103b3 | |
parent | 280323eda058284e1eef55129cc8fca9ec843652 (diff) | |
download | mageiawelcome-2acb375b08d6117ce2d361bbc119f5ed32b5c1f9.tar mageiawelcome-2acb375b08d6117ce2d361bbc119f5ed32b5c1f9.tar.gz mageiawelcome-2acb375b08d6117ce2d361bbc119f5ed32b5c1f9.tar.bz2 mageiawelcome-2acb375b08d6117ce2d361bbc119f5ed32b5c1f9.tar.xz mageiawelcome-2acb375b08d6117ce2d361bbc119f5ed32b5c1f9.zip |
Workaround for openGL library loading
-rw-r--r-- | qml/mageiawelcome.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qml/mageiawelcome.py b/qml/mageiawelcome.py index 8439ff7..83fe644 100644 --- a/qml/mageiawelcome.py +++ b/qml/mageiawelcome.py @@ -10,6 +10,8 @@ import os import subprocess from helpers import get_desktop_name, get_desktop_name2, is_installed import pwd +# Workaround for opengl lib selection +from OpenGL import GL class ConfList(QAbstractListModel): NameRole = Qt.UserRole + 1 |