Write file system type as "[Encrypted] FSTYPE" to saved details
The GUI displays the file system of an open encrypted file system as "[Encrypted] FSTYPE" [1]. However saved details just writes the file system type as "luks". Update saved details writing code to use the same method the GUI currently uses [2]. [1] commitcb3cc505ce
Display "[Encrypted] FSTYPE" in the File System column (#760080) [2] commitbd6fc67afb
Provide virtual Partition::get_filesystem_string() method (#774818)
This commit is contained in:
parent
1115fa2be8
commit
35e85e5b02
|
@ -488,7 +488,7 @@ void Dialog_Progress::write_partition_details(const Partition& partition, std::o
|
|||
<< "<td class='number_col'>" << partition.sector_end << "</td>"
|
||||
<< "<td>" << Glib::build_path(", ", partition.flags) << "</td>"
|
||||
<< "<td>" << partition.name << "</td>"
|
||||
<< "<td>" << Utils::get_filesystem_string(partition.fstype) << "</td>"
|
||||
<< "<td>" << partition.get_filesystem_string() << "</td>"
|
||||
<< "<td>" << partition.get_filesystem_label() << "</td>"
|
||||
<< "<td>" << Glib::build_path(", ", partition.get_mountpoints()) << "</td>"
|
||||
<< "</tr>" << std::endl;
|
||||
|
|
Loading…
Reference in New Issue