mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 19:08:05 +08:00
Fix bug where other panel tabs would switch the document panel tabs
This commit is contained in:
@@ -158,10 +158,14 @@ export default defineComponent({
|
||||
},
|
||||
methods: {
|
||||
async handleTabClick(tabIndex: number) {
|
||||
if (this.panelType !== "Document") return;
|
||||
|
||||
const { select_document } = await wasm;
|
||||
select_document(tabIndex);
|
||||
},
|
||||
async closeTab(tabIndex: number) {
|
||||
if (this.panelType !== "Document") return;
|
||||
|
||||
const { close_document } = await wasm;
|
||||
// eslint-disable-next-line no-alert
|
||||
const result = window.confirm("Closing this document will permanently discard all work. Continue?");
|
||||
|
||||
Reference in New Issue
Block a user