From 7cda44c3f0574d9cf7cc41291402f7bdfe04ce21 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 10 Apr 2012 20:40:20 +0000 Subject: [PATCH] Readd the number prefixes to the automation log levels in the preferences dialog Originally committed to SVN as r6677. --- aegisub/src/preferences.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/preferences.cpp b/aegisub/src/preferences.cpp index a6da686ce..e6b527b95 100644 --- a/aegisub/src/preferences.cpp +++ b/aegisub/src/preferences.cpp @@ -472,7 +472,7 @@ Automation::Automation(wxTreebook *book, Preferences *parent): OptionPage(book, OptionAdd(general, _("Include path"), "Path/Automation/Include"); OptionAdd(general, _("Auto-load path"), "Path/Automation/Autoload"); - const wxString tl_arr[6] = { _("Fatal"), _("Error"), _("Warning"), _("Hint"), _("Debug"), _("Trace") }; + const wxString tl_arr[6] = { _("0: Fatal"), _("1: Error"), _("2: Warning"), _("3: Hint"), _("4: Debug"), _("5: Trace") }; wxArrayString tl_choice(6, tl_arr); OptionChoice(general, _("Trace level"), tl_choice, "Automation/Trace Level");