We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9982c91 commit bb60ebbCopy full SHA for bb60ebb
src/store/tabs.rs
@@ -107,7 +107,7 @@ impl TabsStore {
107
108
pub fn add_editor(&mut self, editor: Rc<RefCell<Option<CodeEditor>>>) {
109
self.editors.update(|prev| {
110
- prev.insert((self.active_tabs.get_untracked() + 1).to_string(), editor);
+ prev.insert((self.active_tabs.get_untracked() - 1).to_string(), editor);
111
});
112
}
113
0 commit comments