aboutsummaryrefslogtreecommitdiff
path: root/js/panels/css-panel/css-style.reel
diff options
context:
space:
mode:
authorEric Guzman2012-05-22 15:47:56 -0700
committerEric Guzman2012-05-22 15:47:56 -0700
commit0eb95ff2dbba1fe7213eed2e0140b4d07bda3dd5 (patch)
tree904db0d53c7de3a93f7c782d62315442066d646a /js/panels/css-panel/css-style.reel
parent041c7e125386c1add7653ec90f5b882ffa82530d (diff)
downloadninja-0eb95ff2dbba1fe7213eed2e0140b4d07bda3dd5.tar.gz
CSS Style - Fix issue when changing value to same value minus units.
Diffstat (limited to 'js/panels/css-panel/css-style.reel')
-rw-r--r--js/panels/css-panel/css-style.reel/css-style.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/panels/css-panel/css-style.reel/css-style.js b/js/panels/css-panel/css-style.reel/css-style.js
index 8fd0f156..84841f5b 100644
--- a/js/panels/css-panel/css-style.reel/css-style.js
+++ b/js/panels/css-panel/css-style.reel/css-style.js
@@ -292,8 +292,8 @@ exports.CssStyle = Montage.create(Component, {
292 } else if (value !== '0') { 292 } else if (value !== '0') {
293 this.units = units; 293 this.units = units;
294 } 294 }
295 295
296 this.valueText = value; 296 this.valueField.value = value;
297 297
298 this.delegate.handleValueChange(rule, property, value, this); 298 this.delegate.handleValueChange(rule, property, value, this);
299 } 299 }