diff --git a/src/GUI/gui.cpp b/src/GUI/gui.cpp
index 391d1100..e621061f 100644
--- a/src/GUI/gui.cpp
+++ b/src/GUI/gui.cpp
@@ -640,20 +640,20 @@ void GUI::paths()
msgBox.setWindowTitle(tr("Paths"));
msgBox.setText("
" + tr("Paths") + "
");
- msgBox.setInformativeText("" + tr("Global")
- + "
"
- + "" + tr("Map directory:") + " | "
- + QDir::cleanPath(GLOBAL_MAP_DIR) + " |
"
- + tr("POI directory:") + " | "
+ msgBox.setInformativeText(
+ ""
+ + tr("Global") + "" + tr("Map directory:")
+ + " | " + QDir::cleanPath(GLOBAL_MAP_DIR)
+ + " | " + tr("POI directory:") + " | "
+ QDir::cleanPath(GLOBAL_POI_DIR) + " | "
+ tr("GCS/PCS directory:") + " | "
- + QDir::cleanPath(GLOBAL_CSV_DIR) + " | "
- + "" + tr("User-specific") + ""
+ + QDir::cleanPath(GLOBAL_CSV_DIR) + " |
"
+ + " " + tr("User-specific") + ""
+ tr("Map directory:") + " | " + QDir::cleanPath(USER_MAP_DIR)
+ " | " + tr("POI directory:") + " | "
+ QDir::cleanPath(USER_POI_DIR) + " | "
+ tr("GCS/PCS directory:") + " | "
- + QDir::cleanPath(USER_CSV_DIR) + " |
"
+ + QDir::cleanPath(USER_CSV_DIR) + " |
"
);
msgBox.exec();