Skip to content

Commit 99d06b1

Browse files
committed
tests/constraints.tcl [testmenubarheight]: correct condition that tests existence of C-level command
1 parent d8243bf commit 99d06b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/constraints.tcl

+3-3
Original file line numberDiff line numberDiff line change
@@ -246,9 +246,9 @@ namespace eval tk {
246246
# got moved to the requested location should use a y coordinate larger than the
247247
# height of the menubar (normally 23 pixels) and an x coordinate larger than the
248248
# width of the dock, if it happens to be on the left.
249-
# testmenubarheight deals with this issue but may not be available from the test
250-
# environment, therefore provide a fallback here
251-
if {[llength [info procs testmenubarheight]] == 0} {
249+
# The C-level command "testmenubarheight" deals with this issue but it may
250+
# not be available on each platform. Therefore, provide a fallback here.
251+
if {[llength [info commands testmenubarheight]] == 0} {
252252
if {[tk windowingsystem] ne "aqua"} {
253253
# Windows may overlap the menubar
254254
proc testmenubarheight {} {

0 commit comments

Comments
 (0)