| 3958 | } // ViewerGL::updateInfoWidgetColorPickerInternal |
| 3959 | |
| 3960 | void |
| 3961 | ViewerGL::updateRectangleColorPicker() |
| 3962 | { |
| 3963 | bool isSync = _imp->viewerTab->isViewersSynchroEnabled(); |
| 3964 | |
| 3965 | if (isSync) { |
| 3966 | const std::list<ViewerTab*>& allViewers = _imp->viewerTab->getGui()->getViewersList(); |
| 3967 | for (std::list<ViewerTab*>::const_iterator it = allViewers.begin(); it != allViewers.end(); ++it) { |
| 3968 | (*it)->getViewer()->updateRectangleColorPickerInternal(); |
| 3969 | } |
| 3970 | } else { |
| 3971 | updateRectangleColorPickerInternal(); |
| 3972 | } |
| 3973 | } |
| 3974 | |
| 3975 | void |
| 3976 | ViewerGL::updateRectangleColorPickerInternal() |
nothing calls this directly
no test coverage detected