From ea387cbfa5ebff3fe69cf6d5c3190b1d6a828b5d Mon Sep 17 00:00:00 2001 From: Francesco Date: Tue, 15 Oct 2024 14:52:24 +0200 Subject: [PATCH] Restored OLEProperties for all \u0005 streams --- sources/Structured Storage Explorer/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Structured Storage Explorer/MainForm.cs b/sources/Structured Storage Explorer/MainForm.cs index 83776c1..47891cb 100644 --- a/sources/Structured Storage Explorer/MainForm.cs +++ b/sources/Structured Storage Explorer/MainForm.cs @@ -391,7 +391,7 @@ private void treeView1_MouseUp(object sender, MouseEventArgs e) dgvUserDefinedProperties.DataSource = null; dgvOLEProps.DataSource = null; - if (stream.Name == "\u0005SummaryInformation" || stream.Name == "\u0005DocumentSummaryInformation") + if (stream.Name.StartsWith("\u0005")) //(stream.Name == "\u0005SummaryInformation" || stream.Name == "\u0005DocumentSummaryInformation") { OLEPropertiesContainer c = stream.AsOLEPropertiesContainer();