Text: Fix text moving grabber

This commit is contained in:
Noisyfox 2023-11-04 11:39:38 +08:00
parent 090a9247cb
commit 018b2744db
2 changed files with 44 additions and 57 deletions

View file

@ -83,6 +83,8 @@ public:
bool gizmo_event(SLAGizmoEventType action, const Vec2d &mouse_position, bool shift_down, bool alt_down, bool control_down);
bool on_mouse(const wxMouseEvent &mouse_event) override;
bool is_mesh_point_clipped(const Vec3d &point, const Transform3d &trafo) const;
BoundingBoxf3 bounding_box() const;
@ -99,6 +101,8 @@ protected:
virtual void on_set_state() override;
virtual CommonGizmosDataID on_get_requirements() const override;
virtual void on_render_input_window(float x, float y, float bottom_limit);
virtual void on_register_raycasters_for_picking() override;
virtual void on_unregister_raycasters_for_picking() override;
void show_tooltip_information(float x, float y);