Merge with "Beep6581/dev"
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user