From 2e45c8adaebe8bf593b3197951b49a1974d8cbc6 Mon Sep 17 00:00:00 2001 From: ChristianVisintin Date: Wed, 25 Nov 2020 12:05:36 +0100 Subject: [PATCH] fmt --- src/ui/activities/filetransfer_activity.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 }