mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Fixed bug that prevented ctrl-z and ctrl-shift-z from working in the ASM editor.
This commit is contained in:
parent
47b1dc5073
commit
0425faec81
@ -131,6 +131,10 @@ export class QuestEditorToolBarController extends Controller {
|
|||||||
undo_manager.redo();
|
undo_manager.redo();
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
gui_store.on_global_keydown(GuiTool.QuestEditor, "Ctrl-Y", () => {
|
||||||
|
undo_manager.redo();
|
||||||
|
}),
|
||||||
|
|
||||||
gui_store.on_global_keydown(GuiTool.QuestEditor, "F5", this.debug),
|
gui_store.on_global_keydown(GuiTool.QuestEditor, "F5", this.debug),
|
||||||
|
|
||||||
gui_store.on_global_keydown(GuiTool.QuestEditor, "Shift-F5", this.stop),
|
gui_store.on_global_keydown(GuiTool.QuestEditor, "Shift-F5", this.stop),
|
||||||
|
@ -68,15 +68,6 @@ export class AsmEditorView extends ResizableView {
|
|||||||
|
|
||||||
this.history = this.disposable(new EditorHistory(this.editor));
|
this.history = this.disposable(new EditorHistory(this.editor));
|
||||||
|
|
||||||
// Commands and actions.
|
|
||||||
this.editor.addCommand(KeyMod.CtrlCmd | KeyCode.KEY_Z, () => {
|
|
||||||
// Do nothing.
|
|
||||||
});
|
|
||||||
|
|
||||||
this.editor.addCommand(KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KEY_Z, () => {
|
|
||||||
// Do nothing.
|
|
||||||
});
|
|
||||||
|
|
||||||
const quick_command = this.editor.getAction("editor.action.quickCommand");
|
const quick_command = this.editor.getAction("editor.action.quickCommand");
|
||||||
|
|
||||||
this.disposables(
|
this.disposables(
|
||||||
@ -88,7 +79,6 @@ export class AsmEditorView extends ResizableView {
|
|||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
||||||
// Undo/Redo
|
|
||||||
this.disposables(
|
this.disposables(
|
||||||
asm_editor_store.did_undo.observe(({ value: source }) => {
|
asm_editor_store.did_undo.observe(({ value: source }) => {
|
||||||
this.editor.trigger(source, "undo", undefined);
|
this.editor.trigger(source, "undo", undefined);
|
||||||
|
Loading…
Reference in New Issue
Block a user