From 3129fb51785086d6a6e2c9c7b8ce6baaf6d898d9 Mon Sep 17 00:00:00 2001 From: vng Date: Tue, 26 Apr 2011 05:06:05 +0300 Subject: [PATCH] Set start scale to 3 in scale slider bar. --- qt/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/mainwindow.cpp b/qt/mainwindow.cpp index 2a1eca48e0..a0d792bb89 100644 --- a/qt/mainwindow.cpp +++ b/qt/mainwindow.cpp @@ -272,7 +272,7 @@ void MainWindow::CreateNavigationBar() // add scale slider QClickSlider * pScale = new QClickSlider(Qt::Vertical, this); - pScale->setRange(0, scales::GetUpperScale()); + pScale->setRange(3, scales::GetUpperScale()); pScale->setTickPosition(QSlider::TicksRight); pBar->addWidget(pScale);