From 1e19f5c23c4c4e49c1cdc0357e688838f8c766a1 Mon Sep 17 00:00:00 2001 From: Benno van den Berg Date: Wed, 2 Oct 2024 16:16:05 +0200 Subject: [PATCH] Also add undo/redo/select_all --- fpx-app/src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fpx-app/src/main.rs b/fpx-app/src/main.rs index 9448a2689..016eb1345 100644 --- a/fpx-app/src/main.rs +++ b/fpx-app/src/main.rs @@ -55,9 +55,13 @@ fn main() { .item(&open_workspace) .item(&close_workspace) .separator() + .undo() + .redo() + .separator() .cut() .copy() .paste() + .select_all() .separator() .close_window() .build()