LibWeb: Remove unused clip_rect from display list recorder state

This commit is contained in:
Aliaksandr Kalenik 2024-10-11 14:35:36 +02:00 committed by Andreas Kling
commit 1892cac80b
Notes: github-actions[bot] 2024-10-11 15:28:01 +00:00

View file

@ -160,7 +160,6 @@ public:
private: private:
struct State { struct State {
Gfx::AffineTransform translation; Gfx::AffineTransform translation;
Optional<Gfx::IntRect> clip_rect;
Optional<i32> scroll_frame_id; Optional<i32> scroll_frame_id;
}; };
State& state() { return m_state_stack.last(); } State& state() { return m_state_stack.last(); }