mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Merge branch 'master' into icon-name-fix
This commit is contained in:
commit
e3d7c9f1ea
2 changed files with 2 additions and 3 deletions
|
@ -121,7 +121,6 @@ QVariant ActivityListModel::data(const QModelIndex &index, int role) const
|
||||||
return type;
|
return type;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Qt::ToolTipRole:
|
|
||||||
case ActivityItemDelegate::ActionTextRole:
|
case ActivityItemDelegate::ActionTextRole:
|
||||||
return a._subject;
|
return a._subject;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -100,13 +100,12 @@ OwncloudSetupPage::OwncloudSetupPage(QWidget *parent)
|
||||||
_ui.hostButton->hide();
|
_ui.hostButton->hide();
|
||||||
#endif
|
#endif
|
||||||
setStyleSheet(QString("background-color:%1; color:%2 QLabel { color:%2; } QSpacerItem { color: red; }").arg(theme->wizardHeaderBackgroundColor().name(), theme->wizardHeaderTitleColor().name()));
|
setStyleSheet(QString("background-color:%1; color:%2 QLabel { color:%2; } QSpacerItem { color: red; }").arg(theme->wizardHeaderBackgroundColor().name(), theme->wizardHeaderTitleColor().name()));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef WITH_PROVIDERS
|
#ifdef WITH_PROVIDERS
|
||||||
void OwncloudSetupPage::nextSlide()
|
void OwncloudSetupPage::nextSlide()
|
||||||
{
|
{
|
||||||
if (_currentSlide < _slideshow.length()-1) {
|
if (_currentSlide < _slideshow.length() - 1) {
|
||||||
_currentSlide++;
|
_currentSlide++;
|
||||||
} else {
|
} else {
|
||||||
_currentSlide = 0;
|
_currentSlide = 0;
|
||||||
|
@ -155,6 +154,7 @@ void OwncloudSetupPage::slotLogin()
|
||||||
animation->setStartValue(500);
|
animation->setStartValue(500);
|
||||||
animation->setEndValue(500);
|
animation->setEndValue(500);
|
||||||
_ui.login->show();
|
_ui.login->show();
|
||||||
|
_ui.loginButton->hide();
|
||||||
wizard()->resize(wizard()->sizeHint());
|
wizard()->resize(wizard()->sizeHint());
|
||||||
animation->start();
|
animation->start();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue