From 41a74191c1965acff84d23d64a4ec3ed4565b604 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Fri, 30 May 2014 02:57:30 +0200 Subject: fixing frame close button action --- src/gwin/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gwin/frame.c b/src/gwin/frame.c index 8d6ce73b..69b430b3 100644 --- a/src/gwin/frame.c +++ b/src/gwin/frame.c @@ -215,7 +215,7 @@ static void _callbackBtn(void *param, GEvent *pe) { switch (pe->type) { case GEVENT_GWIN_BUTTON: if (((GEventGWinButton *)pe)->button == ((GFrameObject*)(GHandle)param)->btnClose) - ;//gwinDestroy((GHandle)param); + gwinDestroy((GHandle)param); else if (((GEventGWinButton *)pe)->button == ((GFrameObject*)(GHandle)param)->btnMin) { ;/* ToDo */ -- cgit v1.2.3