Skip to content
This repository was archived by the owner on Jun 30, 2023. It is now read-only.

Commit 97f263e

Browse files
committed
resize float
1 parent 3dfbc19 commit 97f263e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

neovim_gui/gtk_ui.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def resize(*args):
365365
if g._screen.columns == columns and g._screen.rows == rows:
366366
return
367367
## TODO: this must tell the grid
368-
self._bridge.resize(columns, rows)
368+
self._bridge.resize(g.handle, columns, rows)
369369

370370
if not g._screen:
371371
return

neovim_gui/ui_bridge.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ def input(self, input_str):
4141
"""Send input to nvim."""
4242
self._call(self._nvim.input, input_str)
4343

44-
def resize(self, columns, rows):
44+
def resize(self, grid, columns, rows):
4545
"""Send a resize request to nvim."""
46-
self._call(self._nvim.ui_try_resize, columns, rows)
46+
self._call(self._nvim.api.ui_grid_try_resize, grid, columns, rows)
4747

4848
def attach(self, columns, rows, **options):
4949
"""Attach the UI to nvim."""

0 commit comments

Comments
 (0)