aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/SamplePathOverstroke.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'samplecode/SamplePathOverstroke.cpp')
-rw-r--r--samplecode/SamplePathOverstroke.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/samplecode/SamplePathOverstroke.cpp b/samplecode/SamplePathOverstroke.cpp
index a2d1b89b86..b6202a7784 100644
--- a/samplecode/SamplePathOverstroke.cpp
+++ b/samplecode/SamplePathOverstroke.cpp
@@ -43,27 +43,21 @@ class OverstrokeView : public SampleView {
switch (uni) {
case ',':
fStroke += 1.0;
- this->inval(nullptr);
return true;
case '.':
fStroke -= 1.0;
- this->inval(nullptr);
return true;
case 'x':
fPathType = (fPathType + 1) % 4;
- this->inval(nullptr);
return true;
case 'c':
fClosePath = !fClosePath;
- this->inval(nullptr);
return true;
case 'f':
fDrawFillPath = !fDrawFillPath;
- this->inval(nullptr);
return true;
case 'D':
fDumpHex = !fDumpHex;
- this->inval(nullptr);
return true;
default:
break;