| 548 | } |
| 549 | |
| 550 | void CartesianPlotLegendDock::layoutColumnCountChanged(int count) { |
| 551 | ui.lOrder->setVisible(count != 1); |
| 552 | ui.cbOrder->setVisible(count != 1); |
| 553 | |
| 554 | CONDITIONAL_LOCK_RETURN; |
| 555 | |
| 556 | for (auto* legend : m_legendList) |
| 557 | legend->setLayoutColumnCount(count); |
| 558 | } |
| 559 | |
| 560 | //************************************************************* |
| 561 | //**** SLOTs for changes triggered in CartesianPlotLegend ***** |
nothing calls this directly
no test coverage detected