Skip to content

Instantly share code, notes, and snippets.

@simonlehmann
Created January 26, 2018 02:57
Show Gist options
  • Save simonlehmann/7273ff6014030c731eba83c4900cb32b to your computer and use it in GitHub Desktop.
Save simonlehmann/7273ff6014030c731eba83c4900cb32b to your computer and use it in GitHub Desktop.

Revisions

  1. simonlehmann created this gist Jan 26, 2018.
    9 changes: 9 additions & 0 deletions Fixit.vb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    Sub Fixit()
    Dim templ As ListTemplate
    Dim lev As ListLevel
    For Each templ In ActiveDocument.ListTemplates
    For Each lev In templ.ListLevels
    lev.Font.Reset
    Next lev
    Next templ
    End Sub