|
From: John M. <jm...@nt...> - 2002-09-18 13:26:39
|
Finally I have created a working Windows build environment for RapidSVN and reproduced the problem whereby the preferences dialog is not correctly layed out under Windows, despite working correctly under linux. The fix was to change the order of two calls when setting up the window. SetAutoLayout(true); // Must precede call to Fit to work on Windows. topsizer->Fit(this); I have just checked in this change. Comparing my preferences dialog code with that from audacity, we seem independently to have written almost identical code, which is encouraging. Anyway, the moral seems to be to have the linux and Windows running side by side when developing UI code. John |