Part/Gui: Rename Pick Geometry tool to Clarify Selection

Co-authored-by: realthunder <realthunder@users.noreply.github.com>
This commit is contained in:
tetektoza
2025-09-02 21:26:11 +02:00
parent 0608f3b56c
commit 6f0dd99819
10 changed files with 38 additions and 38 deletions

View File

@@ -2605,12 +2605,12 @@ PyObject *SelectionSingleton::sGetSelectionFromStack(PyObject * /*self*/, PyObje
PY_CATCH;
}
bool SelectionSingleton::pickGeometryActive = false;
bool SelectionSingleton::clarifySelectionActive = false;
bool SelectionSingleton::isPickGeometryActive() {
return pickGeometryActive;
bool SelectionSingleton::isClarifySelectionActive() {
return clarifySelectionActive;
}
void SelectionSingleton::setPickGeometryActive(bool active) {
pickGeometryActive = active;
void SelectionSingleton::setClarifySelectionActive(bool active) {
clarifySelectionActive = active;
}