Skip to content

Commit

Permalink
commit dags popups
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanbuel committed Nov 16, 2024
1 parent 302cddd commit 392835d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ target
flowrs
logs
plugins
dags
dags/**
.DS_Store
.vscode

Expand Down
17 changes: 17 additions & 0 deletions src/app/model/popup/dags/commands.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
use crate::app::model::popup::commands_help::{Command, CommandPopUp};

pub const DAG_COMMAND_POP_UP: CommandPopUp<2> = CommandPopUp {
title: "DAG Commands",
commands: [
Command {
name: "Pauze",
key_binding: "p",
description: "Pauze/unpauze a DAG",
},
Command {
name: "Filter",
key_binding: "/",
description: "Filter DAgs",
},
],
};
1 change: 1 addition & 0 deletions src/app/model/popup/dags/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod commands;

0 comments on commit 392835d

Please sign in to comment.