Commit c067d990c2e5c27c72c521f5f2b07a8cf7d35e2a
1 parent
1900710c
Exists in
master
and in
3 other branches
Adding debug message on view resize.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/core/screen.c
... | ... | @@ -669,7 +669,7 @@ void set_viewsize(H3270 *session, unsigned int rows, unsigned int cols) |
669 | 669 | session->view.rows = rows; |
670 | 670 | session->view.cols = cols; |
671 | 671 | |
672 | - trace("View size changes to %dx%d",rows,cols); | |
672 | + trace("View size changes to %dx%d (configure=%p)",rows,cols,session->cbk.configure); | |
673 | 673 | |
674 | 674 | if(session->cbk.configure) |
675 | 675 | session->cbk.configure(session,session->view.rows,session->view.cols); | ... | ... |