diff --git a/src/ui/activities/filetransfer_activity.rs b/src/ui/activities/filetransfer_activity.rs index 0bb6ce6..11e73ef 100644 --- a/src/ui/activities/filetransfer_activity.rs +++ b/src/ui/activities/filetransfer_activity.rs @@ -91,11 +91,11 @@ enum DialogYesNoOption { /// PopupType describes the type of popup #[derive(std::cmp::PartialEq, Clone)] enum PopupType { - Alert(Color, String), // Block color; Block text - Fatal(String), // Must quit after being hidden - Input(String, OnInputSubmitCallback), // Input description; Callback for submit - Progress(String), // Progress block text - Wait(String), // Wait block text + Alert(Color, String), // Block color; Block text + Fatal(String), // Must quit after being hidden + Input(String, OnInputSubmitCallback), // Input description; Callback for submit + Progress(String), // Progress block text + Wait(String), // Wait block text YesNo(String, DialogCallback, DialogCallback), // Yes, no callback }