Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] fixed rendering styles dialog
fixes #12583
  • Loading branch information
volaya committed Apr 28, 2015
1 parent 55108ae commit 9f2c544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/gui/EditRenderingStylesDialog.py
Expand Up @@ -42,7 +42,7 @@ def __init__(self, alg):
QDialog.__init__(self)
self.setupUi(self)

self.alg = alg
self.alg = alg.getCopy()

self.tblStyles.horizontalHeader().setResizeMode(QHeaderView.Stretch)
self.setWindowTitle(self.alg.name)
Expand All @@ -64,7 +64,7 @@ def setTableContent(self):
if isinstance(output, (OutputVector, OutputRaster)):
if not output.hidden:
item = QTableWidgetItem(output.description + '<'
+ output.__module__.split('.')[-1] + '>')
+ output.__class__.__name__ + '>')
item.setFlags(Qt.ItemIsEnabled)
self.tblStyles.setItem(i, 0, item)
item = RenderingStyleFilePanel()
Expand Down

0 comments on commit 9f2c544

Please sign in to comment.