|
From: Tapio V. <aa...@us...> - 2011-01-27 17:28:12
|
Module: editor Branch: master Commit: 9524b58f01de8eca85c070291cf69d81085395e3 Author: Tapio Vierros <tap...@gm...> Date: Thu Jan 27 18:55:04 2011 +0200 ProgressBar should be initially hidden. --- editorapp.cc | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/editorapp.cc b/editorapp.cc index cb09dd9..99d2b5d 100644 --- a/editorapp.cc +++ b/editorapp.cc @@ -75,6 +75,7 @@ EditorApp::EditorApp(QWidget *parent): QMainWindow(parent), projectFileName(), h statusbarProgress = new QProgressBar(NULL); ui.statusbar->addPermanentWidget(statusbarProgress); + statusbarProgress->hide(); connect(noteGraph, SIGNAL(analyzeProgress(int, int)), this, SLOT(analyzeProgress(int, int))); hasUnsavedChanges = false; |