diff --git a/deja_vu/src/app.rs b/deja_vu/src/app.rs index 968d2bf..0c83455 100644 --- a/deja_vu/src/app.rs +++ b/deja_vu/src/app.rs @@ -41,6 +41,7 @@ use crate::{ system::{ boot, cpu::get_cpu_name, + disk::PartitionTableType, diskpart::build_dest_format_script, drivers::{self}, }, @@ -572,7 +573,29 @@ fn get_right_selections(app: &App, prev_mode: Mode, cur_mode: Mode) -> Vec "GPT", + PartitionTableType::Legacy => "MBR", + }; + disk_description.insert( + 1, + DVLine { + line_parts: vec![format!(" (Will be formatted {type_str}")], + line_colors: vec![Color::Yellow], + }, + ); + } + selections.push(disk_description) } } }