diff --git a/OneMore/Commands/Styles/ApplyStyleCommand.cs b/OneMore/Commands/Styles/ApplyStyleCommand.cs index 7dfcfc65a1..10160256b7 100644 --- a/OneMore/Commands/Styles/ApplyStyleCommand.cs +++ b/OneMore/Commands/Styles/ApplyStyleCommand.cs @@ -209,7 +209,7 @@ private bool StylizeParagraphs() .Where(e => e.Attributes("selected").Any(a => a.Value.Equals("all"))) .Select(p => p.Parent); - if (elements.Any()) + if (!elements.Any()) { return false; }