Merge pull request #8291 from bfredl/ui_resize

ui_events: correct wrong argument order in resize event
This commit is contained in:
Björn Linse 2018-04-19 10:22:19 +02:00 committed by GitHub
commit be1448213c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@
#include "nvim/func_attr.h"
#include "nvim/ui.h"
void resize(Integer rows, Integer columns)
void resize(Integer width, Integer height)
FUNC_API_SINCE(3);
void clear(void)
FUNC_API_SINCE(3);