summaryrefslogtreecommitdiffstats
path: root/examples/charts/openglseries/main.cpp
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@theqtcompany.com>2015-09-25 16:27:51 +0300
committerMiikka Heikkinen <miikka.heikkinen@theqtcompany.com>2015-09-28 07:40:03 +0000
commit78282651dc64b27e7f5f2dae55205586b384265b (patch)
tree0b87713b37e4d99e91930f8ac20f0866166b7049 /examples/charts/openglseries/main.cpp
parentf0e8ba2c495bff9309bc084b5d976aa84a67a5d9 (diff)
Fix issues based on android testing
-Some includes were missing -Widgets got on top of each other on openglSeries example -qmloscilloscope didn't show button texts properly Change-Id: I96cb64091275269f73d2a569ff53c2baae8b0f66 Reviewed-by: Titta Heikkala <titta.heikkala@theqtcompany.com>
Diffstat (limited to 'examples/charts/openglseries/main.cpp')
-rw-r--r--examples/charts/openglseries/main.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/charts/openglseries/main.cpp b/examples/charts/openglseries/main.cpp
index 7b654a5d..01c6de54 100644
--- a/examples/charts/openglseries/main.cpp
+++ b/examples/charts/openglseries/main.cpp
@@ -148,11 +148,12 @@ int main(int argc, char *argv[])
QLabel *countLabel = new QLabel(&window);
QString countText = QStringLiteral("Total point count: %1");
countLabel->setText(countText.arg(pointCount * seriesCount));
- countLabel->resize(window.width(), countLabel->height());
- fpsLabel->move(10,2);
+ countLabel->adjustSize();
+ fpsLabel->move(10, 2);
+ fpsLabel->adjustSize();
fpsLabel->raise();
fpsLabel->show();
- countLabel->move(10, 14);
+ countLabel->move(10, fpsLabel->height());
fpsLabel->raise();
countLabel->show();