| 4364 | } |
| 4365 | |
| 4366 | bool Config::isDisplayTemporary(int index) const noexcept |
| 4367 | { |
| 4368 | if (index >= 0 && index < static_cast<int>(getImpl()->m_displays.size())) |
| 4369 | { |
| 4370 | return getImpl()->m_displays[index].second.m_temporary; |
| 4371 | } |
| 4372 | |
| 4373 | return false; |
| 4374 | } |
| 4375 | |
| 4376 | void Config::setDisplayTemporary(int index, bool isTemporary) noexcept |
| 4377 | { |