##// END OF EJS Templates
Fixed: axis not redrawing when labelFormat changed
Fixed: axis not redrawing when labelFormat changed

File last commit:

r2150:128c1c36c673
r2323:e9844f86b718
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();
}