I would like to bold the first line in a menu.

Qt Code:
  1. menu = QMenu()
  2. menu.addAction('Reports if Single or Married')
  3. menu.addAction(' Your Annual SS at Each Start Month/Age', self.yourssmonthly)
  4. menu.addAction(' Spouse Annual SS at Each Start Month/Age', self.spssmonthly)
  5. menu.addAction(' Your and Spouse Annual SS on One Page', self.both_annual)
To copy to clipboard, switch view to plain text mode 

I would like to bold the "Reports if Single or Married" line only -- not the rest of the items, but need help.

thanks