summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorKevin Walzer <kw@codebykevin.com>2015-04-09 22:15:18 (GMT)
committerKevin Walzer <kw@codebykevin.com>2015-04-09 22:15:18 (GMT)
commitbe6da964abb20148c4764e858bc8e57fc466552f (patch)
tree62f0d4501f3c763d072dd488f64a1abe981d82dc /library
parented31121d0a3f712fe8e67b9c56b6780327cc5f74 (diff)
downloadtk-be6da964abb20148c4764e858bc8e57fc466552f.zip
tk-be6da964abb20148c4764e858bc8e57fc466552f.tar.gz
tk-be6da964abb20148c4764e858bc8e57fc466552f.tar.bz2
Small patch for menubtton demo on OS X; thanks to Marc Culler
Diffstat (limited to 'library')
-rw-r--r--library/menu.tcl6
1 files changed, 6 insertions, 0 deletions
diff --git a/library/menu.tcl b/library/menu.tcl
index d05740f..cd05207 100644
--- a/library/menu.tcl
+++ b/library/menu.tcl
@@ -313,6 +313,9 @@ proc ::tk::MbPost {w {x {}} {y {}}} {
set x [expr {[winfo rootx $w] - [winfo reqwidth $menu]}]
set y [expr {(2 * [winfo rooty $w] + [winfo height $w]) / 2}]
set entry [MenuFindName $menu [$w cget -text]]
+ if {$entry eq ""} {
+ set entry 0
+ }
if {[$w cget -indicatoron]} {
if {$entry == [$menu index last]} {
incr y [expr {-([$menu yposition $entry] \
@@ -333,6 +336,9 @@ proc ::tk::MbPost {w {x {}} {y {}}} {
set x [expr {[winfo rootx $w] + [winfo width $w]}]
set y [expr {(2 * [winfo rooty $w] + [winfo height $w]) / 2}]
set entry [MenuFindName $menu [$w cget -text]]
+ if {$entry eq ""} {
+ set entry 0
+ }
if {[$w cget -indicatoron]} {
if {$entry == [$menu index last]} {
incr y [expr {-([$menu yposition $entry] \