##// END OF EJS Templates
Bugfixes for layout...
Bugfixes for layout * fix division by zero when delta less then 1 in barcategory axis * fix one frame flash with wrong layout of legend during show event * fix wrong margin size when legend in bottom aligment * adds initlization flag so size hints are always corect * fixes wrong minHeight calcualtion in barcateogry axisY

File last commit:

r1693:8b01a00ae1fe
r1837:21f33dedea6d
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
#include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}