summaryrefslogtreecommitdiffstats
path: root/src/logViewer.cpp
blob: ac93f3949ca2b16de7a37e8ad329fd953b93332e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <logViewer.h>
#include <fbgui.h>

logViewer::logViewer(QWidget *parent) : QTextEdit(parent) {
	setWindowFlags(Qt::FramelessWindowHint);
	QPalette pal;
	pal.setColor(QPalette::Base, Qt::black);
	setPalette(pal);
	setTextColor(Qt::green);
	setPlainText("Debug console initialized.");
}