diff options
| author | Denis Jacquerye | 2015-10-19 09:16:12 +0100 |
|---|---|---|
| committer | Denis Jacquerye | 2015-10-19 13:51:13 +0100 |
| commit | 1337a13ccbd3bec8e0c26b84205eb9c90b66f1e8 (patch) | |
| tree | c49a88c84ffe8a2483cedfe8716204e29be54d0e /Lib/defconQt/layerSetList.py | |
| parent | 63f83224f474c2c191e8cac3cb6bda8f2cb81b7d (diff) | |
| download | trufont-1337a13ccbd3bec8e0c26b84205eb9c90b66f1e8.tar.bz2 | |
Comment out unused variables
Diffstat (limited to 'Lib/defconQt/layerSetList.py')
| -rw-r--r-- | Lib/defconQt/layerSetList.py | 4 |
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 |
