GH-1665 Add line breaks to the fatal error dialogs.
Makes is slightly more readable.
This commit is contained in:
parent
ffa8792c13
commit
0a89b04afd
@ -83,8 +83,8 @@ static const QLatin1String liveCheckFile("live.check");
|
|||||||
using namespace Commandline;
|
using namespace Commandline;
|
||||||
|
|
||||||
#define MACOS_HINT "If you are on macOS Sierra, you might have to move MultiMC.app to your /Applications or ~/Applications folder. "\
|
#define MACOS_HINT "If you are on macOS Sierra, you might have to move MultiMC.app to your /Applications or ~/Applications folder. "\
|
||||||
"This usually fixes the problem and you can move the application elsewhere afterwards.\n"
|
"This usually fixes the problem and you can move the application elsewhere afterwards.\n"\
|
||||||
|
"\n"
|
||||||
|
|
||||||
MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
|
MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
|
||||||
{
|
{
|
||||||
@ -208,6 +208,7 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
|
|||||||
showFatalErrorMessage(
|
showFatalErrorMessage(
|
||||||
"MultiMC data folder could not be created.",
|
"MultiMC data folder could not be created.",
|
||||||
"MultiMC data folder could not be created.\n"
|
"MultiMC data folder could not be created.\n"
|
||||||
|
"\n"
|
||||||
#if defined(Q_OS_MAC)
|
#if defined(Q_OS_MAC)
|
||||||
MACOS_HINT
|
MACOS_HINT
|
||||||
#endif
|
#endif
|
||||||
@ -222,6 +223,7 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
|
|||||||
showFatalErrorMessage(
|
showFatalErrorMessage(
|
||||||
"MultiMC data folder could not be opened.",
|
"MultiMC data folder could not be opened.",
|
||||||
"MultiMC data folder could not be opened.\n"
|
"MultiMC data folder could not be opened.\n"
|
||||||
|
"\n"
|
||||||
#if defined(Q_OS_MAC)
|
#if defined(Q_OS_MAC)
|
||||||
MACOS_HINT
|
MACOS_HINT
|
||||||
#endif
|
#endif
|
||||||
@ -264,6 +266,7 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
|
|||||||
showFatalErrorMessage(
|
showFatalErrorMessage(
|
||||||
"MultiMC data folder is not writable!",
|
"MultiMC data folder is not writable!",
|
||||||
"MultiMC couldn't create a log file - the MultiMC data folder is not writable.\n"
|
"MultiMC couldn't create a log file - the MultiMC data folder is not writable.\n"
|
||||||
|
"\n"
|
||||||
#if defined(Q_OS_MAC)
|
#if defined(Q_OS_MAC)
|
||||||
MACOS_HINT
|
MACOS_HINT
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user