Merge pull request #549 from and3md/clipboard_sdl

Normalize end of line characters when get text from clipboard in SDL
This commit is contained in:
Vadim Lopatin 2018-02-04 12:38:44 +03:00 committed by GitHub
commit 0bff4c9778
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1489,7 +1489,7 @@ class SDLPlatform : Platform {
return ""d;
string s = fromStringz(txt).dup;
SDL_free(txt);
return toUTF32(s);
return normalizeEndOfLineCharacters(toUTF32(s));
}
/// sets text to clipboard (when mouseBuffer == true, use mouse selection clipboard - under linux)