mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
PixelPaint: Use the crosshair cursor with the lasso tool
This matches the behavior of other selection tools.
This commit is contained in:
parent
5e4d835caf
commit
971a5467bf
1 changed files with 1 additions and 0 deletions
|
@ -26,6 +26,7 @@ public:
|
|||
virtual bool on_keydown(GUI::KeyEvent&) override;
|
||||
virtual void on_second_paint(Layer const*, GUI::PaintEvent&) override;
|
||||
virtual ErrorOr<GUI::Widget*> get_properties_widget() override;
|
||||
virtual Variant<Gfx::StandardCursor, NonnullRefPtr<Gfx::Bitmap const>> cursor() override { return Gfx::StandardCursor::Crosshair; }
|
||||
|
||||
private:
|
||||
virtual StringView tool_name() const override { return "Lasso Select Tool"sv; }
|
||||
|
|
Loading…
Reference in a new issue