diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-06-16 11:33:20 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-17 05:54:32 +0200 |
commit | 502c54e39ab15844eef0ef97701c4450ffba0ae4 (patch) | |
tree | ba3799a1fcb33486874b208679c9e5320505f46a /Applications/PaintBrush/BucketTool.h | |
parent | 940eb1bbeb5a1d00f8765da5c64ea20ef57c13b3 (diff) | |
download | serenity-502c54e39ab15844eef0ef97701c4450ffba0ae4.zip |
Add a simple spray fill tool
Could do with some more tweaking no doubt, and it'd be nice to have a
circular spray, but this is better than nothing.
Diffstat (limited to 'Applications/PaintBrush/BucketTool.h')
-rw-r--r-- | Applications/PaintBrush/BucketTool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/PaintBrush/BucketTool.h b/Applications/PaintBrush/BucketTool.h index 0c72c9e7f1..3e03e3da56 100644 --- a/Applications/PaintBrush/BucketTool.h +++ b/Applications/PaintBrush/BucketTool.h @@ -7,7 +7,7 @@ public: BucketTool(); virtual ~BucketTool() override; - virtual void on_mousedown(PaintableWidget&, GMouseEvent&) override; + virtual void on_mousedown(GMouseEvent&) override; private: virtual const char* class_name() const override { return "BucketTool"; } |