There's no check that frame isn't #f here, and this seems to be the root of
the failure I was noticing whenever popup windows were triggered (e.g., hitting the backtrace button or trying to submit a bug report). svn: r18293
This commit is contained in:
parent
2406ac6011
commit
1c31d939d4
|
@ -564,7 +564,7 @@
|
||||||
(when frame
|
(when frame
|
||||||
(send frame next-tab))))])
|
(send frame next-tab))))])
|
||||||
(let ([frame (find-frame windows-menu)])
|
(let ([frame (find-frame windows-menu)])
|
||||||
(unless (= 1 (send frame get-tab-count))
|
(unless (or (not frame) (= 1 (send frame get-tab-count)))
|
||||||
(for ([i (in-range 0 (send frame get-tab-count))]
|
(for ([i (in-range 0 (send frame get-tab-count))]
|
||||||
#:when (< i 9))
|
#:when (< i 9))
|
||||||
(new menu-item%
|
(new menu-item%
|
||||||
|
|
Loading…
Reference in New Issue
Block a user