diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2020-04-21 21:14:11 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2020-11-19 03:31:12 +0000 |
commit | e2dcd957fa206a28404ff824fb764b8889705fb2 (patch) | |
tree | f6feb981eef3ca8344bb0314575de3c029749237 /src/qt/forms | |
parent | f2e5a6b54fa38b10d822609939b8108bd8fe041b (diff) |
GUI/Intro: Rework UI flow to let the user set prune size in GBs
Diffstat (limited to 'src/qt/forms')
-rw-r--r-- | src/qt/forms/intro.ui | 46 |
1 files changed, 35 insertions, 11 deletions
diff --git a/src/qt/forms/intro.ui b/src/qt/forms/intro.ui index f27a4ebe44..db1b567049 100644 --- a/src/qt/forms/intro.ui +++ b/src/qt/forms/intro.ui @@ -7,7 +7,7 @@ <x>0</x> <y>0</y> <width>674</width> - <height>415</height> + <height>447</height> </rect> </property> <property name="windowTitle"> @@ -201,6 +201,40 @@ </layout> </item> <item> + <layout class="QHBoxLayout" name="pruneOptLayout"> + <item> + <widget class="QCheckBox" name="prune"> + <property name="text"> + <string>Limit block chain storage to</string> + </property> + <property name="toolTip"> + <string>Reverting this setting requires re-downloading the entire blockchain. It is faster to download the full chain first and prune it later. Disables some advanced features.</string> + </property> + </widget> + </item> + <item> + <widget class="QSpinBox" name="pruneGB"> + <property name="suffix"> + <string> GB</string> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer_2"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> + </item> + <item> <widget class="QLabel" name="lblExplanation1"> <property name="text"> <string>When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched.</string> @@ -211,16 +245,6 @@ </widget> </item> <item> - <widget class="QCheckBox" name="prune"> - <property name="toolTip"> - <string>Reverting this setting requires re-downloading the entire blockchain. It is faster to download the full chain first and prune it later. Disables some advanced features.</string> - </property> - <property name="text"> - <string></string> - </property> - </widget> - </item> - <item> <widget class="QLabel" name="lblExplanation2"> <property name="text"> <string>This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off.</string> |