| 166 | } |
| 167 | |
| 168 | void PanelMainProperties::notifyActionLayer(std::string_view /*_type*/, std::string_view _value, bool _final) |
| 169 | { |
| 170 | if (_final) |
| 171 | { |
| 172 | WidgetContainer* widgetContainer = EditorWidgets::getInstance().find(mCurrentWidget); |
| 173 | widgetContainer->setLayerName(_value); |
| 174 | |
| 175 | UndoManager::getInstance().addValue(PR_PROPERTIES); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | void PanelMainProperties::notifyActionName(std::string_view /*_type*/, std::string_view _value, bool _final) |
| 180 | { |
nothing calls this directly
no test coverage detected