| 803 | } |
| 804 | |
| 805 | void ChatRootView::setIsSyncOpenFiles(bool state) |
| 806 | { |
| 807 | if (m_isSyncOpenFiles != state) { |
| 808 | m_isSyncOpenFiles = state; |
| 809 | emit isSyncOpenFilesChanged(); |
| 810 | } |
| 811 | |
| 812 | if (m_isSyncOpenFiles) { |
| 813 | for (auto editor : std::as_const(m_currentEditors)) { |
| 814 | onAppendLinkFileFromEditor(editor); |
| 815 | } |
| 816 | } |
| 817 | } |
| 818 | |
| 819 | void ChatRootView::openChatHistoryFolder() |
| 820 | { |
nothing calls this directly
no outgoing calls
no test coverage detected