diff options
Diffstat (limited to '')
-rw-r--r-- | muddle/gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muddle/gui.py b/muddle/gui.py index 70f689d..6c533fc 100644 --- a/muddle/gui.py +++ b/muddle/gui.py @@ -491,7 +491,7 @@ class MuddleWindow(QMainWindow): subprocess.Popen(('xdg-open', filepath)) # this is here to emulate the behavior of setAutoTristate which does not - # work because of a Qt Bug + # work because of a Qt Bug, see https://bugreports.qt.io/browse/QTBUG-59173 @pyqtSlot(QModelIndex, QModelIndex) def onMoodleTreeModelDataChanged(self, topLeft, bottomRight): # TODO: this can probably be moved in Item.setData() by creating AutoTriStateRole |