LINUX.ORG.RU

История изменений

Исправление kaffeine, (текущая версия) :

Выдержка из моего коммита в одном из проектов.

QProgressDialog *cacheProgressDialog = new QProgressDialog(this, Qt::Dialog | Qt::WindowTitleHint);
// Since Qt 5.5, QProgressDialog works as intended: it show
// itself on construction after minimumDuration() (4 seconds by default). Cancel it.
cacheProgressDialog->cancel();

Исходная версия kaffeine, :

Выдержка из моего коммита в одном из проектов.

QProgressDialog *cacheProgressDialog = new QProgressDialog(this, Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint);
// Since Qt 5.5, QProgressDialog works as intended: it show
// itself on construction after minimumDuration() (4 seconds by default). Cancel it.
cacheProgressDialog->cancel();