* @brief Invalidate the hierarchy information * * This method is supposed to be called if something on the * hierarchy has been changed - i.e. cells have been inserted * or cell instances have been inserted. */
| 84 | * or cell instances have been inserted. |
| 85 | */ |
| 86 | void invalidate_hier () |
| 87 | { |
| 88 | ++m_hier_generation_id; |
| 89 | if (! m_hier_dirty || m_busy) { |
| 90 | do_invalidate_hier (); // must be called before the hierarchy is invalidated (stopping of redraw thread requires this) |
| 91 | m_hier_dirty = true; |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * @brief Invalidate the bounding boxes |
no outgoing calls
no test coverage detected