diff options
author | Dana Olson <dana@shineuponthee.com> | 2014-12-08 23:26:19 -0500 |
---|---|---|
committer | Dana Olson <dana@shineuponthee.com> | 2014-12-08 23:26:19 -0500 |
commit | b8742051196a3fc74f74fb79bb900eec3c56f96f (patch) | |
tree | 0d570661f741855debc7fc3563cca5e44ed35e3a | |
parent | be4e40e90a5a322f6a7cec4893854ef5b15db600 (diff) |
closes #163
-rw-r--r-- | core/color.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/color.cpp b/core/color.cpp index 1528db6aaa..3116c33a31 100644 --- a/core/color.cpp +++ b/core/color.cpp @@ -225,7 +225,7 @@ Color Color::inverted() const { Color Color::contrasted() const { Color c=*this; - c.contrasted(); + c.contrast(); return c; } |