mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Merge pull request #614 from Titan-C/host_link
In setup wizard put link to nextcloud installation.
This commit is contained in:
commit
b19abe9c86
2 changed files with 4 additions and 15 deletions
|
@ -61,22 +61,11 @@
|
||||||
</spacer>
|
</spacer>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="hostButton">
|
<widget class="QLabel" name="installLink">
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="font">
|
|
||||||
<font>
|
|
||||||
<underline>true</underline>
|
|
||||||
</font>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Host your own server</string>
|
<string><a href="https://docs.nextcloud.com/server/13/admin_manual/installation/index.html#installation"><span style=" text-decoration: underline; color:#0000ff;">Host your own server</span></a></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="flat">
|
<property name="openExternalLinks">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
|
|
|
@ -97,7 +97,7 @@ OwncloudSetupPage::OwncloudSetupPage(QWidget *parent)
|
||||||
_ui.slideImage->hide();
|
_ui.slideImage->hide();
|
||||||
_ui.slideLabel->hide();
|
_ui.slideLabel->hide();
|
||||||
_ui.loginButton->hide();
|
_ui.loginButton->hide();
|
||||||
_ui.hostButton->hide();
|
_ui.installLink->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()));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue