From: Kevin Ottens Date: Thu, 8 Oct 2020 15:25:12 +0000 (+0200) Subject: Hide the slideshow when going to the login page X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~22^2~109^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ec945b8ac784824d1d236afda52ab35e422156a7;p=nextcloud-desktop.git Hide the slideshow when going to the login page This is indeed very distracting otherwise. Signed-off-by: Kevin Ottens --- diff --git a/src/gui/wizard/owncloudsetuppage.cpp b/src/gui/wizard/owncloudsetuppage.cpp index 1bc76fdef..428f18a03 100644 --- a/src/gui/wizard/owncloudsetuppage.cpp +++ b/src/gui/wizard/owncloudsetuppage.cpp @@ -125,6 +125,10 @@ void OwncloudSetupPage::setupCustomization() #ifdef WITH_PROVIDERS void OwncloudSetupPage::slotLogin() { + _ui.slideShow->hide(); + _ui.nextButton->hide(); + _ui.prevButton->hide(); + _ocWizard->setRegistration(false); _ui.login->setMaximumHeight(0); auto *animation = new QPropertyAnimation(_ui.login, "maximumHeight");