aboutsummaryrefslogtreecommitdiffstats
path: root/Lib/defconQt/layerSetList.py
diff options
context:
space:
mode:
authorDenis Jacquerye2015-10-19 09:16:12 +0100
committerDenis Jacquerye2015-10-19 13:51:13 +0100
commit1337a13ccbd3bec8e0c26b84205eb9c90b66f1e8 (patch)
treec49a88c84ffe8a2483cedfe8716204e29be54d0e /Lib/defconQt/layerSetList.py
parent63f83224f474c2c191e8cac3cb6bda8f2cb81b7d (diff)
downloadtrufont-1337a13ccbd3bec8e0c26b84205eb9c90b66f1e8.tar.bz2
Comment out unused variables
Diffstat (limited to 'Lib/defconQt/layerSetList.py')
-rw-r--r--Lib/defconQt/layerSetList.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/defconQt/layerSetList.py b/Lib/defconQt/layerSetList.py
index e5617b9..24d8f84 100644
--- a/Lib/defconQt/layerSetList.py
+++ b/Lib/defconQt/layerSetList.py
@@ -125,10 +125,10 @@ class LayerSetList(QListWidget):
if not layer:
return
- startColor = layer.color and QColor.fromRgbF(*layer.color) or \
+ newColor = layer.color and QColor.fromRgbF(*layer.color) or \
QColor('limegreen')
qcolor = QColorDialog.getColor(
- startColor, self, options=QColorDialog.ShowAlphaChannel)
+ newColor, self, options=QColorDialog.ShowAlphaChannel)
if not qcolor.isValid():
# cancelled
return