diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | core/gui.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 06ede030..674b8a64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ Bugfixes: * Allow empty tables as keychains if they have metatables. * Fixed caret placement in block comment/uncomment. * Use '\n' keycode in curses instead of '\r'. +* Fixed crash caused by split views. Changes: diff --git a/core/gui.lua b/core/gui.lua index 59322c68..94aa4a82 100644 --- a/core/gui.lua +++ b/core/gui.lua @@ -399,6 +399,7 @@ end) -- Updates titlebar and statusbar. events_connect(events.BUFFER_AFTER_SWITCH, function() set_title() + buffer:private_lexer_call(SETDIRECTPOINTER, buffer.direct_pointer) events.emit(events.UPDATE_UI) end) |