Fixes 267, Functions without params (like integral) now causes graph to update correctly

This commit is contained in:
Torkel Ödegaard 2014-04-01 12:38:36 +02:00
parent c727863616
commit 18e0a60b9e
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# vNext
- More graphite functions
- Fix for Text panel, now changes take effect directly (Issue #251)
- Fix when adding functions without params that did not cause graph to update (issue #267)
# 1.5.2 (2013-03-24)
### New Features and improvements

View File

@ -234,7 +234,7 @@ function (angular, _, config, gfunc, Parser) {
$scope.moveAliasFuncLast();
$scope.smartlyHandleNewAliasByNode(newFunc);
if (!funcDef.params && newFunc.added) {
if (!funcDef.params.length && newFunc.added) {
$scope.targetChanged();
}
};