How do we remove the "Show more fonts" button when we use wx.FontDialog?
dlg = wx.FontDialog(self, data)
|
feedback
|
|
The dialogs in So the question is whether we can change system dialog boxes, and the easy answer to this question is: No, that's impossible. See this thread for details. However, Windows 7 has several Font dialog templates and you can choose what template to use, but that is the hard way (see this MSDN article for details). Hope this helps. | |||
|
feedback
|
|
As Andrey said, you can't do it since wxPython is wrapping the native dialog. The only way around this limitation besides what he mentioned is to roll your own font dialog with wx.Dialog. | |||
|
feedback
|