Skip to content

Commit

Permalink
small tweaks for project manager
Browse files Browse the repository at this point in the history
  • Loading branch information
mrDIMAS committed Dec 19, 2024
1 parent ca7f320 commit edff812
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions project-manager/src/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ impl ProjectManager {
0,
0,
Some(8),
Color::NAVY,
Color::DODGER_BLUE,
font_size,
);
let locate = make_text_and_image_button_with_tooltip(
Expand Down Expand Up @@ -756,7 +756,11 @@ impl ProjectManager {
.with_title(WindowTitle::text("Delete Project"))
.open(false),
)
.with_text(&format!("Do you really want to delete {}?", project.name))
.with_text(&format!(
"Do you really want to delete {} project?\n\
WARNING: This is irreversible operation and it permanently deletes the project!",
project.name
))
.with_buttons(MessageBoxButtons::YesNo)
.build(ctx);
ui.send_message(WindowMessage::open_modal(
Expand Down

0 comments on commit edff812

Please sign in to comment.