From 5d9622db214850104d16a7d1004617eb7054a24c Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Tue, 14 Apr 2026 23:02:44 +0500 Subject: [PATCH] Use newlines more often in macOS dialog for a nicer look Signed-off-by: Octol1ttle --- launcher/minecraft/launch/EnsureAvailableMemory.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/launcher/minecraft/launch/EnsureAvailableMemory.cpp b/launcher/minecraft/launch/EnsureAvailableMemory.cpp index 941aee2d0..0f349674a 100644 --- a/launcher/minecraft/launch/EnsureAvailableMemory.cpp +++ b/launcher/minecraft/launch/EnsureAvailableMemory.cpp @@ -33,14 +33,16 @@ void EnsureAvailableMemory::executeTask() return; case MacOSHardwareInfo::MemoryPressureLevel::Warning: text = - tr("The system is under increased memory pressure. This may cause lag or slowdowns.\n" + tr("The system is under increased memory pressure.\n" + "This may lead to lag or slowdowns.\n" "If possible, close other applications before continuing.\n\n" "Launch anyway?"); break; case MacOSHardwareInfo::MemoryPressureLevel::Critical: text = - tr("Your system is under critical memory pressure. This may lead to severe slowdowns or crashes.\n" - "It is highly recommended to close other applications or restart your system.\n\n" + tr("Your system is under critical memory pressure.\n" + "This may lead to severe slowdowns, crashes or system instability.\n" + "It is recommended to close other applications or restart your system.\n\n" "Launch anyway?"); break; }