PixelPaint: Fix const correctness of Selection::in_interactive_selection

This commit is contained in:
Kevin Meyer 2022-08-28 00:34:22 +02:00 committed by Sam Atkins
parent 058ab81c24
commit 6e006be9e6
Notes: sideshowbarker 2024-07-18 04:38:32 +09:00

View file

@ -54,7 +54,7 @@ public:
void begin_interactive_selection() { m_in_interactive_selection = true; }
void end_interactive_selection() { m_in_interactive_selection = false; }
bool in_interactive_selection() { return m_in_interactive_selection; }
bool in_interactive_selection() const { return m_in_interactive_selection; }
void add_client(SelectionClient&);
void remove_client(SelectionClient&);