summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-10-30 15:44:40 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-10-30 15:44:40 (GMT)
commitdc97493f9155cd9a6cb9dee769c24d3e65a3338d (patch)
tree7cf86721493f9d830b2daceb388133c221aba574 /library
parentf42bfb7fd1d0a32539abeaf59406f2d4b81143df (diff)
downloadtk-dc97493f9155cd9a6cb9dee769c24d3e65a3338d.zip
tk-dc97493f9155cd9a6cb9dee769c24d3e65a3338d.tar.gz
tk-dc97493f9155cd9a6cb9dee769c24d3e65a3338d.tar.bz2
Fix Arabic and Hebrew rendering on Windows. [Bug 1803723]
Diffstat (limited to 'library')
-rw-r--r--library/demos/unicodeout.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/demos/unicodeout.tcl b/library/demos/unicodeout.tcl
index bd9738c..8090b24 100644
--- a/library/demos/unicodeout.tcl
+++ b/library/demos/unicodeout.tcl
@@ -3,7 +3,7 @@
# This demonstration script shows how you can produce output (in label
# widgets) using many different alphabets.
#
-# RCS: @(#) $Id: unicodeout.tcl,v 1.5 2006/03/22 00:21:17 das Exp $
+# RCS: @(#) $Id: unicodeout.tcl,v 1.6 2007/10/30 15:44:40 dkf Exp $
if {![info exists widgetDemo]} {
error "This script should be run from the \"widget\" demo."
@@ -55,7 +55,7 @@ set oldCursor [$w cget -cursor]
$w conf -cursor watch
update
-if {[tk windowingsystem] eq "x11"} {
+if {[tk windowingsystem] in {x11 win32}} {
# Using presentation forms (pre-layouted)
addSample $w Arabic \
"\uFE94\uFEF4\uFE91\uFEAE\uFECC\uFEDF\uFE8D " \
@@ -71,7 +71,7 @@ addSample $w "Simpl. Chinese" "\u6C49\u8BED"
addSample $w Greek \
"\u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AE " \
"\u03B3\u03BB\u03CE\u03C3\u03C3\u03B1"
-if {[tk windowingsystem] eq "x11"} {
+if {[tk windowingsystem] in {x11 win32}} {
# Visual order (pre-layouted)
addSample $w Hebrew \
"\u05DD\u05D9\u05DC\u05E9\u05D5\u05E8\u05D9 " \