transfer_prog member RFU

This commit is contained in:
ChristianVisintin
2020-11-29 12:36:36 +01:00
parent 840a2685bf
commit a69b410ee0

View File

@@ -210,6 +210,7 @@ pub struct FileTransferActivity {
input_field: InputField, // Current selected input mode input_field: InputField, // Current selected input mode
input_txt: String, // Input text input_txt: String, // Input text
choice_opt: DialogYesNoOption, // Dialog popup selected option choice_opt: DialogYesNoOption, // Dialog popup selected option
transfer_prog: f64, // Current write/read progress (percentage)
} }
impl FileTransferActivity { impl FileTransferActivity {
@@ -237,6 +238,7 @@ impl FileTransferActivity {
input_field: InputField::Explorer, input_field: InputField::Explorer,
input_txt: String::new(), input_txt: String::new(),
choice_opt: DialogYesNoOption::Yes, choice_opt: DialogYesNoOption::Yes,
transfer_prog: 0.0,
} }
} }