Skip to content

Commit

Permalink
fix(places): unlink opacity/fill opacity sliders
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Schmidt committed Aug 19, 2019
1 parent 0390ffd commit 7e32198
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/os/ui/featureedit.js
Original file line number Diff line number Diff line change
Expand Up @@ -1532,11 +1532,6 @@ os.ui.FeatureEditCtrl.prototype.onLabelColorReset = function(event) {
os.ui.FeatureEditCtrl.prototype.onOpacityValueChange = function(event, value) {
event.stopPropagation();

// If we have a fill opacity and it is already the same as the stroke opacity, keep them the same
if (this['fillOpacity'] !== undefined && this['opacity'] == this['fillOpacity']) {
this['fillOpacity'] = value;
}

this['opacity'] = value;
};

Expand Down

0 comments on commit 7e32198

Please sign in to comment.