Merge with "Beep6581/dev"

This commit is contained in:
Pandagrapher
2023-03-11 11:02:29 +01:00
252 changed files with 9021 additions and 3231 deletions

View File

@@ -1056,6 +1056,13 @@ void RTWindow::MoveFileBrowserToEditor()
}
}
void RTWindow::updateExternalEditorWidget(int selectedIndex, const std::vector<ExternalEditor> & editors)
{
if (epanel) {
epanel->updateExternalEditorWidget(selectedIndex, editors);
}
}
void RTWindow::updateProfiles (const Glib::ustring &printerProfile, rtengine::RenderingIntent printerIntent, bool printerBPC)
{
if (epanel) {
@@ -1112,6 +1119,27 @@ void RTWindow::updateHistogramPosition (int oldPosition, int newPosition)
}
}
void RTWindow::updateToolPanelToolLocations(
const std::vector<Glib::ustring> &favorites, bool cloneFavoriteTools)
{
if (fpanel) {
fpanel->updateToolPanelToolLocations(favorites, cloneFavoriteTools);
}
if (epanel) {
epanel->updateToolPanelToolLocations(favorites, cloneFavoriteTools);
}
for (const auto &panel : epanels) {
panel.second->updateToolPanelToolLocations(favorites, cloneFavoriteTools);
}
if (options.multiDisplayMode > 0) {
EditWindow::getInstance(this)
->updateToolPanelToolLocations(favorites, cloneFavoriteTools);
}
}
bool RTWindow::splashClosed (GdkEventAny* event)
{
delete splash;