From 6420088452c83d26f4be71a3284601c0f0272be2 Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 13 Jun 2001 16:41:02 +0000 Subject: [PATCH] Check for a NULL current_panel before shelling out mouse actions to a panel method. --- src/GUI/mouse.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/GUI/mouse.cxx b/src/GUI/mouse.cxx index 4b435b297..d80ead445 100644 --- a/src/GUI/mouse.cxx +++ b/src/GUI/mouse.cxx @@ -542,7 +542,9 @@ void guiMouseFunc(int button, int updown, int x, int y) // know what's going on. if (mouse_mode == MOUSE_POINTER) { if (!puMouse (button, updown, x,y)) { - current_panel->doMouseAction(button, updown, x, y); + if ( current_panel != NULL ) { + current_panel->doMouseAction(button, updown, x, y); + } } } -- 2.39.5