| 65 | } |
| 66 | |
| 67 | QString ExportPanelWindow::getBackgroundColor(int row) const { |
| 68 | const auto& resource = resources[row]; |
| 69 | AEGP_CompH compH = GetItemCompH(resource->itemHandle); |
| 70 | auto color = GetCompBackgroundColor(compH); |
| 71 | return ColorToQString(color); |
| 72 | } |
| 73 | |
| 74 | Q_INVOKABLE bool ExportPanelWindow::isAEWindowActive() { |
| 75 | return IsAEWindowActive(); |
nothing calls this directly
no test coverage detected