Discussion:
[Bitpim-devel] resize window change for Mac
Tim Lowery
2003-04-08 02:21:16 UTC
Permalink
Roger,

I got tried of resizing the window on the Mac (defaults to tiny 20x20
pixels). So I added the following lines to MainWindow in gui.py.

### Resize window if too small
if min(self.GetSize())<50:
self.SetSize((640,480))

Can you add this (or something like it) to the next release?

Potential Mac users will having difficulty finding the application
window unless it's bigger.

Tim
Roger Binns
2003-04-08 03:37:41 UTC
Permalink
Post by Tim Lowery
### Resize window if too small
self.SetSize((640,480))
Now in CVS. I used 100, and tested it.

Roger

Loading...