1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

Spreadsheet: Rename variables to better describe their function

Rename some variables relating to the drag-and-cut operations as
well as the select operation so that they are more clear.
This commit is contained in:
martinfalisse 2022-02-08 15:38:17 +01:00 committed by Ali Mohammad Pur
parent e98d0dafa0
commit 8a7d2c3336
2 changed files with 10 additions and 10 deletions

View file

@ -78,9 +78,9 @@ private:
virtual void mouseup_event(GUI::MouseEvent&) override;
virtual void drop_event(GUI::DropEvent&) override;
bool m_should_intercept_drag { false };
bool m_has_committed_to_dragging { false };
bool m_is_dragging_for_select { false };
bool m_is_dragging_for_copy { false };
bool m_has_committed_to_cutting { false };
bool m_is_hovering_extend_zone { false };
bool m_is_hovering_cut_zone { false };
GUI::ModelIndex m_starting_selection_index;