summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authortmh <tmh>2008-08-25 23:01:15 (GMT)
committertmh <tmh>2008-08-25 23:01:15 (GMT)
commitae5fa1cfb9eaa88724d6a8d6731b1c7807b2f4a6 (patch)
tree1d7bb36f648c0ccf20517d53c0358a0d4ece560a /library
parent7e159bb362ea2362854c55e166b0a20d05059183 (diff)
downloadtk-ae5fa1cfb9eaa88724d6a8d6731b1c7807b2f4a6.zip
tk-ae5fa1cfb9eaa88724d6a8d6731b1c7807b2f4a6.tar.gz
tk-ae5fa1cfb9eaa88724d6a8d6731b1c7807b2f4a6.tar.bz2
[Bug 1023955] don't flip to arrow cursor on menus
Diffstat (limited to 'library')
-rw-r--r--library/menu.tcl22
1 files changed, 15 insertions, 7 deletions
diff --git a/library/menu.tcl b/library/menu.tcl
index eda9478..08caeb7 100644
--- a/library/menu.tcl
+++ b/library/menu.tcl
@@ -4,7 +4,7 @@
# It also implements keyboard traversal of menus and implements a few
# other utility procedures related to menus.
#
-# RCS: @(#) $Id: menu.tcl,v 1.26 2007/12/13 15:26:27 dgp Exp $
+# RCS: @(#) $Id: menu.tcl,v 1.27 2008/08/25 23:01:15 tmh Exp $
#
# Copyright (c) 1992-1994 The Regents of the University of California.
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
@@ -261,8 +261,10 @@ proc ::tk::MbPost {w {x {}} {y {}}} {
if {$cur ne ""} {
MenuUnpost {}
}
- set Priv(cursor) [$w cget -cursor]
- $w configure -cursor arrow
+ if {$tk_stricktMotif} {
+ set Priv(cursor) [$w cget -cursor]
+ $w configure -cursor arrow
+ }
if {[tk windowingsystem] ne "aqua"} {
set Priv(relief) [$w cget -relief]
$w configure -relief raised
@@ -409,7 +411,9 @@ proc ::tk::MenuUnpost menu {
set menu [$mb cget -menu]
$menu unpost
set Priv(postedMb) {}
- $mb configure -cursor $Priv(cursor)
+ if {$tk_strictMotif} {
+ $mb configure -cursor $Priv(cursor)
+ }
if {[tk windowingsystem] ne "aqua"} {
$mb configure -relief $Priv(relief)
} else {
@@ -457,7 +461,9 @@ proc ::tk::MenuUnpost menu {
}
RestoreOldGrab
if {$Priv(menuBar) ne ""} {
- $Priv(menuBar) configure -cursor $Priv(cursor)
+ if {$tk_strictMotif} {
+ $Priv(menuBar) configure -cursor $Priv(cursor)
+ }
set Priv(menuBar) {}
}
if {[tk windowingsystem] ne "x11"} {
@@ -590,8 +596,10 @@ proc ::tk::MenuButtonDown menu {
if {$Priv(menuBar) eq {}} {
set Priv(menuBar) $menu
- set Priv(cursor) [$menu cget -cursor]
- $menu configure -cursor arrow
+ if {$tk_strictMotif} {
+ set Priv(cursor) [$menu cget -cursor]
+ $menu configure -cursor arrow
+ }
}
# Don't update grab information if the grab window isn't changing.