Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2010-09-07 19:12:22 +0400
committerThorvald Natvig <slicer@users.sourceforge.net>2010-09-07 19:12:22 +0400
commit6e3fc04af8ad3d9146bbaacd88d35405c0386716 (patch)
tree3e07edd8691ef3d457e34b50eae478aadbfad42b /src/mumble/OverlayConfig.cpp
parenteb3479bb62c944cd4eb0080892bd3b396c4fb52c (diff)
Give the overlay text a bit more space
Diffstat (limited to 'src/mumble/OverlayConfig.cpp')
-rw-r--r--src/mumble/OverlayConfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mumble/OverlayConfig.cpp b/src/mumble/OverlayConfig.cpp
index 633e4db65..39ac402ef 100644
--- a/src/mumble/OverlayConfig.cpp
+++ b/src/mumble/OverlayConfig.cpp
@@ -362,8 +362,8 @@ void OverlayConfig::resizeScene(bool force) {
f.setPointSizeF(qgs.sceneRect().height() / 20.0f);
qgtiInstructions->setFont(f);
- qgtiInstructions->setPos(qgs.sceneRect().width() / 5.0f, qgs.sceneRect().height() / 5.0f);
- qgtiInstructions->setTextWidth(qgs.sceneRect().width() * 6.0f / 10.0f);
+ qgtiInstructions->setPos(qgs.sceneRect().width() / 20.0f, qgs.sceneRect().height() / 10.0f);
+ qgtiInstructions->setTextWidth(qgs.sceneRect().width() * 18.0f / 20.0f);
qgvView->fitInView(qgs.sceneRect(), Qt::KeepAspectRatio);
oug->updateLayout();