Commit afd9b6fb authored by Luke "Jared" Bennett's avatar Luke "Jared" Bennett

Fixed repo_store setActiveFiles not correctly setting file activity

parent 31480210
......@@ -62,7 +62,7 @@ const RepoStore = {
if (RepoStore.isActiveFile(file)) return;
RepoStore.openedFiles = RepoStore.openedFiles
.map((openedFile, i) => RepoStore.w(openedFile, i));
.map((openedFile, i) => RepoStore.setFileActivity(file, openedFile, i));
RepoStore.setActiveToRaw();
......@@ -76,9 +76,9 @@ const RepoStore = {
RepoStore.binary = file.binary;
},
w(file, i) {
const activeFile = file;
activeFile.active = activeFile.url === activeFile.url;
setFileActivity(file, openedFile, i) {
const activeFile = openedFile;
activeFile.active = file.url === activeFile.url;
if (activeFile.active) RepoStore.setActiveFile(activeFile, i);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment