Fix external editor button updates

Make sure the pop-up button is updated in both multiple editors modes.
This commit is contained in:
Lawrence Lee
2023-08-06 16:44:54 -07:00
parent 0052f08e94
commit 548907da34
6 changed files with 41 additions and 4 deletions

View File

@@ -488,6 +488,13 @@ void EditWindow::set_title_decorated(Glib::ustring fname)
set_title("RawTherapee " + M("EDITWINDOW_TITLE") + subtitle);
}
void EditWindow::updateExternalEditorWidget(int selectedIndex, const std::vector<ExternalEditor> &editors)
{
for (const auto& panel : epanels) {
panel.second->updateExternalEditorWidget(selectedIndex, editors);
}
}
void EditWindow::updateToolPanelToolLocations(
const std::vector<Glib::ustring> &favorites, bool cloneFavoriteTools)
{