From 82dacfa295a2b83b5ce63000afb1e908f9f591f8 Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Thu, 16 Jun 2011 18:36:33 +0000 Subject: [PATCH] Add a few missing ISO 8859 encodings to the "open with charset" list. Why is this list hardcoded?? For the record ISO 8859-12 doesn't exist, and my system won't accept ISO 8859-16. Originally committed to SVN as r5432. --- aegisub/src/frame_main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aegisub/src/frame_main.cpp b/aegisub/src/frame_main.cpp index 95dc2502f..04ee00d9f 100644 --- a/aegisub/src/frame_main.cpp +++ b/aegisub/src/frame_main.cpp @@ -1259,7 +1259,10 @@ wxArrayString FrameMain::GetEncodings() { choices.Add(_T("ISO-8859-7")); choices.Add(_T("ISO-8859-8")); choices.Add(_T("ISO-8859-9")); + choices.Add(_T("ISO-8859-10")); + choices.Add(_T("ISO-8859-11")); choices.Add(_T("ISO-8859-13")); + choices.Add(_T("ISO-8859-14")); choices.Add(_T("ISO-8859-15")); choices.Add(_T("WINDOWS-1250")); choices.Add(_T("WINDOWS-1251"));