Co-authored-by: Douglas Mennella <douglas.mennella@gmail.com>
This commit is contained in:
gitonthescene 2021-05-08 16:06:42 +09:00 committed by GitHub
parent 8abf367392
commit dd49148f38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ Encoding.selectEncoding = function(input, onDone) {
});
};
generateEncodingList(elmts.commonList,
{ 'US-ASCII':1, 'ISO-8859-1':1, 'UTF-8':1, 'UTF-16BE':1, 'UTF-16LE':1, 'UTF-16':1 });
{ 'US-ASCII':1, 'ISO-8859-1':1, 'UTF-8':1, 'UTF-16BE':1, 'UTF-16LE':1, 'UTF-16':1, 'windows-1252':1 });
generateEncodingList(elmts.allList, null);
elmts.cancelButton.click(function() {

View File

@ -34,7 +34,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@import-less url("../theme.less");
.select-encoding-dialog-encoding-list {
height: 20em;
height: 22em;
overflow: auto;
}
.select-encoding-dialog-encoding-list > table > tbody > tr > td,