1
0
mirror of https://invent.kde.org/system/dolphin synced 2024-07-04 17:30:55 +00:00

show busy indicator inside the progress bar when counting the directories

svn path=/trunk/playground/utils/dolphin/; revision=611372
This commit is contained in:
Peter Penz 2006-12-07 21:01:44 +00:00
parent 31d1457195
commit 7fecd3b82b

View File

@ -62,6 +62,9 @@ ViewPropsProgressInfo::ViewPropsProgressInfo(QWidget* parent,
m_label = new QLabel(i18n("Counting folders: %1", 0), main);
m_progressBar = new QProgressBar(main);
m_progressBar->setMinimum(0);
m_progressBar->setMaximum(0);
m_progressBar->setValue(0);
topLayout->addWidget(m_label);
topLayout->addWidget(m_progressBar);