Hi all,
I'm beginning to write a set of geometric filters (edge smooting, border
simplification etc.), and I noticed that the four buttons (default,
help, close and apply) are not visible in the auto generated filter UIs.
I'm working on Mac OS X 10.5.4, with Qt 4.4 and gcc 4.0.1, and I fixed
the problem in my sandbox simply setting the minimum button size in
stdpardialog.cpp, line 199
helpButton->setMinimumSize(100, 25);
closeButton->setMinimumSize(100,25);
applyButton->setMinimumSize(100,25);
defaultButton->setMinimumSize(100, 25);
Can I commit such changes to this core file, or I'm the only one having
this problem?
Greetings
-- Davide
|