diff --git a/pd/src/pd.tk b/pd/src/pd.tk index c9bcad17e65be9518a3d74eaea0a9da68df39617..a115189cc104524a362e15619bc27bb374887e7c 100644 --- a/pd/src/pd.tk +++ b/pd/src/pd.tk @@ -1233,8 +1233,10 @@ proc menu_new {} { proc reset_ctrl_on_popup_window {} { global menu_windowlist set first_patch_window_name [lindex $menu_windowlist 0 1] - pdtk_canvas_sendkey $first_patch_window_name.c 0 Control_L null 0 1 -1 - pdtk_canvas_sendkey $first_patch_window_name.c 0 Control_R null 0 1 -1 + if { $first_patch_window_name != "" } { + pdtk_canvas_sendkey $first_patch_window_name.c 0 Control_L null 0 1 -1 + pdtk_canvas_sendkey $first_patch_window_name.c 0 Control_R null 0 1 -1 + } } ################## the "Open" menu command #########################