Skip to content

Commit

Permalink
processing: make help widget proxy aware
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Oct 24, 2015
1 parent a3f4197 commit 8b11d43
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/plugins/processing/gui/AlgorithmDialogBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
from PyQt4.QtGui import QApplication, QDialogButtonBox

from qgis.utils import iface
from qgis.core import QgsNetworkAccessManager

from processing.core.ProcessingConfig import ProcessingConfig
from processing.gui import AlgorithmClassification
Expand Down Expand Up @@ -67,6 +68,8 @@ def __init__(self, alg):

self.setWindowTitle(AlgorithmClassification.getDisplayName(self.alg))

self.txtHelp.page().setNetworkAccessManager(QgsNetworkAccessManager.instance())

# load algorithm help if available
isText, algHelp = self.alg.help()
if algHelp is not None:
Expand Down

0 comments on commit 8b11d43

Please sign in to comment.