Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.4.3
-
None
Description
As can be seen with the following example : it is impossible to grab the resize handle :
#include <QtGui>
class TestDialog : public QDialog
{
public:
TestDialog()
};
int main(int argc, char **argv)
{
QApplication app(argc, argv);
TestDialog td;
return td.exec();
}