diff options
author | 2023-05-30 00:57:54 +0200 | |
---|---|---|
committer | 2023-05-30 00:57:54 +0200 | |
commit | 6074643e748aec36f59dfdadeaf54de00f2094aa (patch) | |
tree | 84cfc2a7d8c97ae5d0535f44b3f7247245b51c8a | |
parent | 80f959733fb7cc7e2e86a3e462496cc17e482bcf (diff) | |
download | cherry-6074643e748aec36f59dfdadeaf54de00f2094aa.tar.gz cherry-6074643e748aec36f59dfdadeaf54de00f2094aa.zip |
Call parent draw function
-rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index c69b265..ba5b9b5 100644 --- a/src/window.c +++ b/src/window.c @@ -68,7 +68,7 @@ cherry_window_draw(CherryWidget *widget) clist_add(&(app->windows), window); XSaveContext(app->display, window->window_handler, app->context, (XPointer) window); -// cherry_widget_draw( + window->base.draw((CherryWidget *) window); } CherryWindow * |