Text editor: refresh path on saving file (#11396)

File size was changed.
reviewable/pr11398/r1
hius07 4 months ago committed by GitHub
parent 75ffc3bb76
commit f246b3d19c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -493,10 +493,11 @@ function TextEditor:readFileContent(file_path)
end end
function TextEditor:saveFileContent(file_path, content) function TextEditor:saveFileContent(file_path, content)
local file, err = io.open(file_path, "wb") local ok, err = util.writeToFile(content, file_path)
if file then if ok then
file:write(content) if self.ui.file_chooser then
file:close() self.ui.file_chooser:refreshPath()
end
logger.info("TextEditor: saved file", file_path) logger.info("TextEditor: saved file", file_path)
return true return true
end end

Loading…
Cancel
Save