J. Cugnoni - 2013-11-27

Hi,
I also experienced this issue in Ubuntu 12.04, but found a way to fix it:

in pycam/Plugins/TaskParameters.py, line 37, change the requested size of the widget to something like this:

self.control.get_widget().set_size_request(240, 120)

instead of the current value

self.control.get_widget().set_size_request(240, -1)

This should show the widget with a proper size, at least for me!