From e50513ff7574c7c0ac407a3d5291dda6d0111646 Mon Sep 17 00:00:00 2001 From: "maosheng.wei" Date: Tue, 27 Jun 2023 11:35:31 +0800 Subject: [PATCH] FIX: [STUDIO-3316] Bold prompt for text wrapping issues Change-Id: Ie5dc6a66730453888b8c1d07e286422f20c17024 --- src/slic3r/GUI/NotificationManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/NotificationManager.cpp b/src/slic3r/GUI/NotificationManager.cpp index 4b51d7e5b..4a03b572f 100644 --- a/src/slic3r/GUI/NotificationManager.cpp +++ b/src/slic3r/GUI/NotificationManager.cpp @@ -437,7 +437,7 @@ void NotificationManager::PopNotification::count_spaces() m_window_width_offset = m_left_indentation + m_line_height * 3.f; if (m_data.level == NotificationLevel::ErrorNotificationLevel || m_data.level == NotificationLevel::SeriousWarningNotificationLevel) { m_left_indentation = 32 + m_line_height; - m_window_width_offset = 150.f; + m_window_width_offset = 90.f; } m_window_width = m_line_height * 25; }