ui: Smaller fonts in indexing dialogs

This commit is contained in:
Eberhard Graether
2016-08-26 13:45:05 +02:00
parent 55ae17af29
commit 401c23f572
2 changed files with 6 additions and 6 deletions
@@ -10,26 +10,26 @@
#title {
color: white;
font-size: 24pt;
font-size: 22pt;
font-weight: bold;
}
#percent {
font-size: 24pt;
font-size: 22pt;
font-weight: bold;
}
#message {
font-size: 16pt;
font-size: 14pt;
font-weight: bold;
}
#filePath {
font-size: 12pt;
font-size: 11pt;
}
#errorCount {
font-size: 14pt;
font-size: 12pt;
border: none;
background: transparent;
}
+1 -1
View File
@@ -200,7 +200,7 @@ void QtDialogView::handleMessage(MessageInterruptTasks* message)
QtIndexingDialog* window = dynamic_cast<QtIndexingDialog*>(m_windowStack.getTopWindow());
if (window && window->getType() == QtIndexingDialog::DIALOG_INDEXING)
{
showProgressDialog("Interrupting Indexing", "Waiting for indexer threads to finish");
showProgressDialog("Interrupting Indexing", "Waiting for indexer\nthreads to finish");
}
}
);