aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm/gitWizard.ui
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2016-09-15 14:47:06 -0400
committerKen Moore <ken@pcbsd.org>2016-09-15 14:47:06 -0400
commit9f79342ab366a74a26b2957e88af265e90658025 (patch)
tree94d54361e9c92ae9b758686912236c933c4e360d /src-qt5/desktop-utils/lumina-fm/gitWizard.ui
parentGet the Git clone functionality all functional. The last thing missing is a g... (diff)
downloadlumina-9f79342ab366a74a26b2957e88af265e90658025.tar.gz
lumina-9f79342ab366a74a26b2957e88af265e90658025.tar.bz2
lumina-9f79342ab366a74a26b2957e88af265e90658025.zip
Get the progress reporting all setup for the git clone. Now it is all set and ready for use!
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm/gitWizard.ui')
-rw-r--r--src-qt5/desktop-utils/lumina-fm/gitWizard.ui16
1 files changed, 15 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/gitWizard.ui b/src-qt5/desktop-utils/lumina-fm/gitWizard.ui
index 86a5ccb1..0f5894b6 100644
--- a/src-qt5/desktop-utils/lumina-fm/gitWizard.ui
+++ b/src-qt5/desktop-utils/lumina-fm/gitWizard.ui
@@ -16,6 +16,9 @@
<property name="wizardStyle">
<enum>QWizard::ModernStyle</enum>
</property>
+ <property name="options">
+ <set>QWizard::NoBackButtonOnLastPage|QWizard::NoBackButtonOnStartPage|QWizard::NoCancelButtonOnLastPage</set>
+ </property>
<widget class="QWizardPage" name="page_repo">
<property name="title">
<string>Welcome!</string>
@@ -226,7 +229,18 @@
</font>
</property>
<property name="text">
- <string>Click &quot;Finish&quot; to start downloading the repository</string>
+ <string>Click &quot;Next&quot; to start downloading the repository</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ <widget class="QWizardPage" name="page_download">
+ <layout class="QVBoxLayout" name="verticalLayout_3">
+ <item>
+ <widget class="QTextEdit" name="text_procOutput">
+ <property name="readOnly">
+ <bool>true</bool>
</property>
</widget>
</item>
bgstack15