mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
refactor: rename w_float_config to w_config #27419
Follows up on rename of `FloatConfig` to `WinConfig` in #27397.
This commit is contained in:
@@ -692,9 +692,9 @@ void ui_grid_resize(handle_T grid_handle, int width, int height, Error *err)
|
||||
|
||||
if (wp->w_floating) {
|
||||
if (width != wp->w_width || height != wp->w_height) {
|
||||
wp->w_float_config.width = width;
|
||||
wp->w_float_config.height = height;
|
||||
win_config_float(wp, wp->w_float_config);
|
||||
wp->w_config.width = width;
|
||||
wp->w_config.height = height;
|
||||
win_config_float(wp, wp->w_config);
|
||||
}
|
||||
} else {
|
||||
// non-positive indicates no request
|
||||
|
Reference in New Issue
Block a user