Remove WebKit SVG renderer.

This commit is contained in:
Chris Hennes
2024-04-19 22:46:03 -05:00
parent c35693fd8a
commit 9b1ef66e98
14 changed files with 8 additions and 518 deletions

View File

@@ -13,9 +13,6 @@ class MainWindow(QtGui.QMainWindow):
super(MainWindow, self).__init__(parent)
from PySide import QtNetwork
# Webkit is used to create icons from SVG files. This could cause a deadlock
# when setting up the internally used network interface. Doing this before
# creating the icons fixes the issue.
QtNetwork.QNetworkConfigurationManager()
def showEvent(self, event):

View File

@@ -11,9 +11,6 @@ class MainWindow(QtGui.QMainWindow):
super(MainWindow, self).__init__(parent)
from PySide import QtNetwork
# Webkit is used to create icons from SVG files. This could cause a deadlock
# when setting up the internally used network interface. Doing this before
# creating the icons fixes the issue.
QtNetwork.QNetworkConfigurationManager()
def showEvent(self, event):

View File

@@ -14,9 +14,6 @@ class MainWindow(QtGui.QMainWindow):
super(MainWindow, self).__init__(parent)
from PySide import QtNetwork
# Webkit is used to create icons from SVG files. This could cause a deadlock
# when setting up the internally used network interface. Doing this before
# creating the icons fixes the issue.
QtNetwork.QNetworkConfigurationManager()
@QtCore.Slot()