Merge branch 'master' into icon-name-fix

This commit is contained in:
Camila Ayres 2018-08-30 16:45:52 +02:00 committed by GitHub
commit e3d7c9f1ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -121,7 +121,6 @@ QVariant ActivityListModel::data(const QModelIndex &index, int role) const
return type;
break;
}
case Qt::ToolTipRole:
case ActivityItemDelegate::ActionTextRole:
return a._subject;
break;

View file

@ -100,13 +100,12 @@ OwncloudSetupPage::OwncloudSetupPage(QWidget *parent)
_ui.hostButton->hide();
#endif
setStyleSheet(QString("background-color:%1; color:%2 QLabel { color:%2; } QSpacerItem { color: red; }").arg(theme->wizardHeaderBackgroundColor().name(), theme->wizardHeaderTitleColor().name()));
}
#ifdef WITH_PROVIDERS
void OwncloudSetupPage::nextSlide()
{
if (_currentSlide < _slideshow.length()-1) {
if (_currentSlide < _slideshow.length() - 1) {
_currentSlide++;
} else {
_currentSlide = 0;
@ -155,6 +154,7 @@ void OwncloudSetupPage::slotLogin()
animation->setStartValue(500);
animation->setEndValue(500);
_ui.login->show();
_ui.loginButton->hide();
wizard()->resize(wizard()->sizeHint());
animation->start();
}