mirror of
https://github.com/neovim/neovim.git
synced 2026-08-20 14:21:06 +00:00
refactor(window): use window handle in frame layout log (#41153)
Problem: The frame layout debug log uses the obsolete window ID field. Solution: Use the window handle field when printing window information.
This commit is contained in:
@@ -180,7 +180,7 @@ static void log_frame_layout(frame_T *frame)
|
||||
frame->fr_height,
|
||||
frame->fr_win == NULL ? -1 : frame->fr_win->w_width,
|
||||
frame->fr_win == NULL ? -1 : frame->fr_win->w_height,
|
||||
frame->fr_win == NULL ? -1 : frame->fr_win->w_id);
|
||||
frame->fr_win == NULL ? -1 : frame->fr_win->handle);
|
||||
if (frame->fr_child != NULL) {
|
||||
DLOG("children");
|
||||
log_frame_layout(frame->fr_child);
|
||||
|
||||
Reference in New Issue
Block a user