Skip to content

Commit 367b672

Browse files
committed
Revert renaming function
1 parent a985df6 commit 367b672

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/FolderManager/FileView.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,10 +574,10 @@ public class Scratch.FolderManager.FileView : Code.Widgets.SourceList, Code.Pane
574574
}
575575
}
576576
Scratch.Services.GitManager.get_instance ().remove_project (folder_root);
577-
save_opened_folders ();
577+
write_settings ();
578578
});
579579

580-
save_opened_folders ();
580+
write_settings ();
581581
add_folder.callback ();
582582
return Source.REMOVE;
583583
});
@@ -592,7 +592,7 @@ public class Scratch.FolderManager.FileView : Code.Widgets.SourceList, Code.Pane
592592
return false;
593593
}
594594

595-
private void save_opened_folders () {
595+
private void write_settings () {
596596
string[] to_save = {};
597597

598598
foreach (var main_folder in root.children) {

0 commit comments

Comments
 (0)