From 79388aa75319660ba08a1c8a48a45d789b4c7126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Sat, 21 Jul 2018 14:24:13 +0200 Subject: [PATCH] Improved paths dialogue formating --- src/GUI/gui.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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();