diff --git a/GUI/View/Canvas/MaskEditorCanvas.cpp b/GUI/View/Canvas/MaskEditorCanvas.cpp
index a7abdc86efe23abafe02dba4ff8e5ad109d897d8..9a58e5fa7e025c173b8375b83f86203b4bede352 100644
--- a/GUI/View/Canvas/MaskEditorCanvas.cpp
+++ b/GUI/View/Canvas/MaskEditorCanvas.cpp
@@ -20,7 +20,7 @@
 #include "GUI/Model/Mask/MaskeditorListmodel.h"
 #include "GUI/Model/Mask/ProjectionList.h"
 #include "GUI/Model/Project/ProjectDocument.h"
-#include "GUI/View/PlotScale/SavePlotAssistant.h"
+#include "GUI/View/Canvas/SavePlotAssistant.h"
 #include "GUI/View/Plotter/ColorMap.h"
 #include "GUI/View/Plotter/PlotEventHelper.h"
 #include "GUI/View/Plotter/PlotStatusLabel.h"
diff --git a/GUI/View/PlotScale/SavePlotAssistant.cpp b/GUI/View/Canvas/SavePlotAssistant.cpp
similarity index 97%
rename from GUI/View/PlotScale/SavePlotAssistant.cpp
rename to GUI/View/Canvas/SavePlotAssistant.cpp
index 9e9b6c3bccea231b8e375b5a8c2e98bf39a1b994..b37c9f93fd0d43280c5bd88f12d3bcf5f0d76f36 100644
--- a/GUI/View/PlotScale/SavePlotAssistant.cpp
+++ b/GUI/View/Canvas/SavePlotAssistant.cpp
@@ -2,7 +2,7 @@
 //
 //  BornAgain: simulate and fit reflection and scattering
 //
-//! @file      GUI/View/PlotScale/SavePlotAssistant.cpp
+//! @file      GUI/View/Canvas/SavePlotAssistant.cpp
 //! @brief     Implements class SavePlotAssistant.
 //!
 //! @homepage  http://www.bornagainproject.org
@@ -12,7 +12,7 @@
 //
 //  ************************************************************************************************
 
-#include "GUI/View/PlotScale/SavePlotAssistant.h"
+#include "GUI/View/Canvas/SavePlotAssistant.h"
 #include "Base/Util/Assert.h"
 #include "Device/IO/IOFactory.h"
 #include "GUI/View/Layout/ApplicationSettings.h"
diff --git a/GUI/View/PlotScale/SavePlotAssistant.h b/GUI/View/Canvas/SavePlotAssistant.h
similarity index 76%
rename from GUI/View/PlotScale/SavePlotAssistant.h
rename to GUI/View/Canvas/SavePlotAssistant.h
index 7ca05c25469a3cb078044b1aab56e523f4f5f89d..76d1914957b1c6d182278f9e22dfc0c9a8be87a1 100644
--- a/GUI/View/PlotScale/SavePlotAssistant.h
+++ b/GUI/View/Canvas/SavePlotAssistant.h
@@ -2,7 +2,7 @@
 //
 //  BornAgain: simulate and fit reflection and scattering
 //
-//! @file      GUI/View/PlotScale/SavePlotAssistant.h
+//! @file      GUI/View/Canvas/SavePlotAssistant.h
 //! @brief     Defines class SavePlotAssistant.
 //!
 //! @homepage  http://www.bornagainproject.org
@@ -12,8 +12,8 @@
 //
 //  ************************************************************************************************
 
-#ifndef BORNAGAIN_GUI_VIEW_PLOTSCALE_SAVEPLOTASSISTANT_H
-#define BORNAGAIN_GUI_VIEW_PLOTSCALE_SAVEPLOTASSISTANT_H
+#ifndef BORNAGAIN_GUI_VIEW_CANVAS_SAVEPLOTASSISTANT_H
+#define BORNAGAIN_GUI_VIEW_CANVAS_SAVEPLOTASSISTANT_H
 
 #include <QString>
 
@@ -26,4 +26,4 @@ void savePlot(const QString& dirname, QCustomPlot* plot, const Datafield* output
 
 };
 
-#endif // BORNAGAIN_GUI_VIEW_PLOTSCALE_SAVEPLOTASSISTANT_H
+#endif // BORNAGAIN_GUI_VIEW_CANVAS_SAVEPLOTASSISTANT_H
diff --git a/GUI/View/Canvas/SpecularDataCanvas.cpp b/GUI/View/Canvas/SpecularDataCanvas.cpp
index 835de9f8e6cc70d5d7c20c805eca04bf69fdbe7f..f137b456b43df29d2911bdd14d19ee7f170121f4 100644
--- a/GUI/View/Canvas/SpecularDataCanvas.cpp
+++ b/GUI/View/Canvas/SpecularDataCanvas.cpp
@@ -16,8 +16,8 @@
 #include "Base/Util/Assert.h"
 #include "GUI/Model/Data/Data1DItem.h"
 #include "GUI/Model/Project/ProjectDocument.h"
+#include "GUI/View/Canvas/SavePlotAssistant.h"
 #include "GUI/View/Canvas/SpecularPlotCanvas.h"
-#include "GUI/View/PlotScale/SavePlotAssistant.h"
 #include <QVBoxLayout>
 #include <qcustomplot.h>