summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI
diff options
context:
space:
mode:
authorSam Atkins <github@samatkins.co.uk>2021-06-09 17:07:55 +0100
committerAndreas Kling <kling@serenityos.org>2021-06-09 18:53:13 +0200
commit6f92d1e63957b524746c12fa9a31e96cd3296a6f (patch)
tree0a6352c060b36269978037d42e7ecb0530cd1efb /Userland/Libraries/LibGUI
parent5b47e9b39a1ff0b95c34d2870e713e128b6521b0 (diff)
downloadserenity-6f92d1e63957b524746c12fa9a31e96cd3296a6f.zip
LibGUI: Set TextEditor to unmodified after saving size=0 files
This fixes #7946 Previously, TextEditor::write_to_file() would not mark its document as unmodified if the file size was 0. This caused a desync in the Text Editor app between the window's is_modified state and the TextEditor's. It's already noted in the comments of the app's save action code that propagating the modified state automatically would be good, and it would solve issues like this, but I'm not yet familiar enough with the code to try a change like that.
Diffstat (limited to 'Userland/Libraries/LibGUI')
-rw-r--r--Userland/Libraries/LibGUI/TextEditor.cpp31
1 files changed, 16 insertions, 15 deletions
diff --git a/Userland/Libraries/LibGUI/TextEditor.cpp b/Userland/Libraries/LibGUI/TextEditor.cpp
index 3880d28cfe..3b2ca5277b 100644
--- a/Userland/Libraries/LibGUI/TextEditor.cpp
+++ b/Userland/Libraries/LibGUI/TextEditor.cpp
@@ -1170,25 +1170,26 @@ bool TextEditor::write_to_file(const String& path)
return false;
}
- if (file_size == 0)
- return true;
-
- for (size_t i = 0; i < line_count(); ++i) {
- auto& line = this->line(i);
- if (line.length()) {
- auto line_as_utf8 = line.to_utf8();
- ssize_t nwritten = write(fd, line_as_utf8.characters(), line_as_utf8.length());
- if (nwritten < 0) {
+ if (file_size == 0) {
+ // A size 0 file doesn't need a data copy.
+ } else {
+ for (size_t i = 0; i < line_count(); ++i) {
+ auto& line = this->line(i);
+ if (line.length()) {
+ auto line_as_utf8 = line.to_utf8();
+ ssize_t nwritten = write(fd, line_as_utf8.characters(), line_as_utf8.length());
+ if (nwritten < 0) {
+ perror("write");
+ return false;
+ }
+ }
+ char ch = '\n';
+ ssize_t nwritten = write(fd, &ch, 1);
+ if (nwritten != 1) {
perror("write");
return false;
}
}
- char ch = '\n';
- ssize_t nwritten = write(fd, &ch, 1);
- if (nwritten != 1) {
- perror("write");
- return false;
- }
}
document().set_unmodified();
return true;