diff --git a/.idea/.idea.DiscImageChef/.idea/contentModel.xml b/.idea/.idea.DiscImageChef/.idea/contentModel.xml index d265e079d..9f268e80a 100644 --- a/.idea/.idea.DiscImageChef/.idea/contentModel.xml +++ b/.idea/.idea.DiscImageChef/.idea/contentModel.xml @@ -1622,6 +1622,8 @@ + + diff --git a/DiscImageChef.Gui/Forms/frmMain.xeto.cs b/DiscImageChef.Gui/Forms/frmMain.xeto.cs index 1910e93f1..b9ba5f978 100644 --- a/DiscImageChef.Gui/Forms/frmMain.xeto.cs +++ b/DiscImageChef.Gui/Forms/frmMain.xeto.cs @@ -250,7 +250,7 @@ namespace DiscImageChef.Gui.Forms foreach(string pluginName in idPlugins) if(plugins.PluginsList.TryGetValue(pluginName, out plugin)) { - plugin.GetInformation(imageFormat, partition, out string _, null); + plugin.GetInformation(imageFormat, partition, out string information, null); TreeGridItem filesystemGridItem = new TreeGridItem { @@ -260,7 +260,7 @@ namespace DiscImageChef.Gui.Forms plugin.XmlFsType.VolumeName is null ? $"{plugin.XmlFsType.Type}" : $"{plugin.XmlFsType.VolumeName} ({plugin.XmlFsType.Type})", - null, null // TODO: Filesystem panel + null, new pnlFilesystem(plugin.XmlFsType, information) } }; @@ -294,7 +294,7 @@ namespace DiscImageChef.Gui.Forms foreach(string pluginName in idPlugins) if(plugins.PluginsList.TryGetValue(pluginName, out plugin)) { - plugin.GetInformation(imageFormat, wholePart, out string _, null); + plugin.GetInformation(imageFormat, wholePart, out string information, null); TreeGridItem filesystemGridItem = new TreeGridItem { @@ -304,7 +304,7 @@ namespace DiscImageChef.Gui.Forms plugin.XmlFsType.VolumeName is null ? $"{plugin.XmlFsType.Type}" : $"{plugin.XmlFsType.VolumeName} ({plugin.XmlFsType.Type})", - null, null // TODO: Filesystem panel + null, new pnlFilesystem(plugin.XmlFsType, information) } }; diff --git a/DiscImageChef.Gui/Panels/pnlFilesystem.xeto b/DiscImageChef.Gui/Panels/pnlFilesystem.xeto new file mode 100644 index 000000000..72f262d91 --- /dev/null +++ b/DiscImageChef.Gui/Panels/pnlFilesystem.xeto @@ -0,0 +1,58 @@ + + + +