Skip to content
Snippets Groups Projects
Commit 315f51de authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Minor tweaks to memory viewer

parent a3344bf6
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ namespace armarx::armem::gui
timestampLayout(new QHBoxLayout()),
instanceSpinner(new QSpinBox()),
predictionEngineSelector(new QComboBox()),
predictButton(new QPushButton("Make prediction")),
predictButton(new QPushButton("Predict")),
entityInfoRetriever(entityInfoRetriever)
{
auto* vlayout = new QVBoxLayout();
......@@ -51,13 +51,13 @@ namespace armarx::armem::gui
vlayout->addLayout(hlayout);
timestampInputSelector->addItems({"Absolute", "Relative to now"});
timestampLayout->addWidget(new QLabel("Prediction time"));
timestampLayout->addWidget(new QLabel("Time"));
timestampLayout->addWidget(timestampInputSelector);
vlayout->addLayout(timestampLayout);
hlayout = new QHBoxLayout();
predictionEngineSelector->setSizeAdjustPolicy(QComboBox::AdjustToContents);
hlayout->addWidget(new QLabel("Prediction engine"));
hlayout->addWidget(new QLabel("Engine"));
hlayout->addWidget(predictionEngineSelector);
hlayout->addStretch();
vlayout->addLayout(hlayout);
......
......@@ -43,7 +43,7 @@ namespace armarx::armem::gui
microseconds->setSuffix(" µs");
auto* hlayout = new QHBoxLayout();
hlayout->addWidget(new QLabel("Time"));
// hlayout->addWidget(new QLabel("Time"));
hlayout->addWidget(dateTime);
hlayout->addWidget(new QLabel("."));
hlayout->addWidget(microseconds);
......@@ -66,7 +66,7 @@ namespace armarx::armem::gui
seconds->setValue(0);
auto* hlayout = new QHBoxLayout();
hlayout->addWidget(new QLabel("Seconds"));
// hlayout->addWidget(new QLabel("Seconds"));
hlayout->addWidget(seconds);
setLayout(hlayout);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment