diff options
author | nyamatongwe <devnull@localhost> | 2002-04-21 12:07:01 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-04-21 12:07:01 +0000 |
commit | 826193c17c8d582b1f07fab6826dee5839f74746 (patch) | |
tree | 0c6f291704573778b17ec2ee1d74916f4c55d58e | |
parent | 044ad96868d92ceaf1748832e272577a289221ee (diff) | |
download | scintilla-mirror-826193c17c8d582b1f07fab6826dee5839f74746.tar.gz |
Made Turkish and Thai set up bettr font specifications.
-rw-r--r-- | gtk/PlatGTK.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 8e6c527bf..a28a7c973 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -152,7 +152,7 @@ static const char *CharacterSetName(int characterSet) { case SC_CHARSET_SYMBOL: return "*-*"; case SC_CHARSET_TURKISH: - return "*-*"; + return "*-9"; case SC_CHARSET_JOHAB: return "*-*"; case SC_CHARSET_HEBREW: @@ -162,7 +162,7 @@ static const char *CharacterSetName(int characterSet) { case SC_CHARSET_VIETNAMESE: return "*-*"; case SC_CHARSET_THAI: - return "*-*"; + return "*-1"; default: return "*-*"; } |