| 1011 | } |
| 1012 | |
| 1013 | void TOPPViewBase::editMetadata() |
| 1014 | { |
| 1015 | PlotCanvas* canvas = getActiveCanvas(); |
| 1016 | |
| 1017 | // warn if hidden layer => wrong layer selected... |
| 1018 | if (!canvas->getCurrentLayer().visible) |
| 1019 | { |
| 1020 | log_->appendNewHeader(LogWindow::LogState::NOTICE, "The current layer is not visible", "Have you selected the right layer for this action?"); |
| 1021 | } |
| 1022 | |
| 1023 | // show editable meta data dialog |
| 1024 | canvas->showMetaData(true); |
| 1025 | } |
| 1026 | |
| 1027 | void TOPPViewBase::layerStatistics() const |
| 1028 | { |
nothing calls this directly
no test coverage detected