summaryrefslogtreecommitdiff
path: root/gui/gui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gui/gui.cc')
-rw-r--r--gui/gui.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/gui/gui.cc b/gui/gui.cc
index 39163ea..9381b55 100644
--- a/gui/gui.cc
+++ b/gui/gui.cc
@@ -7,6 +7,12 @@ GUI::GUI(QWidget *parent)
{
ui->setupUi(this);
+ QLabel* status_label = new QLabel("CONSENSUS: WAITING FOR USER.", this);
+ QLabel* risc_vector = new QLabel("RISC V[ECTOR], CS535 UMASS AMHERST", this);
+ status_label->setMinimumWidth(1200);
+ ui->statusBar->addWidget(status_label);
+ ui->statusBar->addPermanentWidget(risc_vector);
+
worker = new Worker();
worker->moveToThread(&workerThread);