From 36a31f9116025eacb99d8afbc9b767e91a02e897 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Fri, 22 Apr 2022 10:34:25 -0600 Subject: [PATCH] gui_main.py: Reword Reboot Prompt --- gui/gui_main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/gui_main.py b/gui/gui_main.py index c3306cdfb..2ba4f6bcb 100644 --- a/gui/gui_main.py +++ b/gui/gui_main.py @@ -79,8 +79,8 @@ class wx_python_gui: def reboot_system(self, event=None): self.popup = wx.MessageDialog( self.frame, - "Root Patcher finished successfully\n\nWould you like to reboot now?\n\nNote: This will close all open applications, remember to save them or manually reboot once you're ready", - "Reboot?", + "Root Patcher finished successfully\nWould you like to reboot now?", + "Reboot to apply patches?", wx.YES_NO | wx.ICON_INFORMATION ) self.popup.SetYesNoLabels("Reboot", "Ignore")