Moved room name edit box from footer to top of page. Also shows room name when in slave mode.
Temporarily increased HWForm's min height from 580 to 610.
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}