How To Avoid Double Spaced List Box?

I have this partial method:

       for item in self.appData.subPols:
         if item[1] == selName:
           self.varList.Append(item[0])

and it works as intended. Except, the items in self.varList are double
spaced. See the attached screenshot.

   Is this normal or is there a way to close up that large baseline skip?

Rich

screenshot.png

···

--
Richard B. Shepard, Ph.D. | The Environmental Permitting
Applied Ecosystem Services, Inc. | Accelerator(TM)
<http://www.appl-ecosys.com> Voice: 503-667-4517 Fax: 503-667-8863

Rich Shepard wrote:

  I have this partial method:

        for item in self.appData.subPols:
          if item[1] == selName:
            self.varList.Append(item[0])

and it works as intended. Except, the items in self.varList are double
spaced. See the attached screenshot.

  Is this normal or is there a way to close up that large baseline skip?

wx.ListBox is a totally native widget, so I expect that this is the normal appearance for your current theme.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

Then I'll just live with it. Seems inelegant to me, though.

Thanks, Robin,

Rich

···

On Fri, 9 Feb 2007, Robin Dunn wrote:

wx.ListBox is a totally native widget, so I expect that this is the normal
appearance for your current theme.

--
Richard B. Shepard, Ph.D. | The Environmental Permitting
Applied Ecosystem Services, Inc. | Accelerator(TM)
<http://www.appl-ecosys.com> Voice: 503-667-4517 Fax: 503-667-8863