Skip to content

Commit fe03ecf

Browse files
ToolTip no longer String.Empty but null
1 parent 7c44020 commit fe03ecf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CompressedFileViewer/Windows/SettingsDialog.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public Preferences Preferences
7777
Content = alg.AlgorithmName,
7878
IsChecked = preferences.EnabledCompressionAlgorithms.Contains(alg.AlgorithmName),
7979
IsEnabled = alg.IsSupported,
80-
ToolTip = alg.IsSupported ? String.Empty : "The algorithm is not supported.\nCheck the log there might be more information.",
80+
ToolTip = alg.IsSupported ? null : "The algorithm is not supported.\nCheck the log there might be more information.",
8181
});
8282
}
8383
}

0 commit comments

Comments
 (0)