fix(SeedPhraseInput): Fixing SeedPhraseInput control height
The suggestion list should be showing up to 5 seed word entries
This commit is contained in:
parent
5c1c9852ae
commit
c6e4cf627c
|
@ -1,5 +1,6 @@
|
||||||
import QtQuick 2.12
|
import QtQuick 2.12
|
||||||
import QtGraphicalEffects 1.13
|
import QtGraphicalEffects 1.13
|
||||||
|
import QtQuick.Controls 2.12
|
||||||
|
|
||||||
import StatusQ.Controls 0.1
|
import StatusQ.Controls 0.1
|
||||||
import StatusQ.Popups 0.1
|
import StatusQ.Popups 0.1
|
||||||
|
@ -61,7 +62,7 @@ Item {
|
||||||
Item {
|
Item {
|
||||||
id: suggListContainer
|
id: suggListContainer
|
||||||
width: seedSuggestionsList.width
|
width: seedSuggestionsList.width
|
||||||
height: (seedSuggestionsList.count*34) + 16
|
height: (((seedSuggestionsList.count <= 5) ? seedSuggestionsList.count : 5) *34) + 16
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.leftMargin: 16
|
anchors.leftMargin: 16
|
||||||
anchors.top: seedWordInput.bottom
|
anchors.top: seedWordInput.bottom
|
||||||
|
@ -93,6 +94,7 @@ Item {
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
anchors.bottomMargin: 8
|
anchors.bottomMargin: 8
|
||||||
clip: true
|
clip: true
|
||||||
|
ScrollBar.vertical: ScrollBar { }
|
||||||
delegate: Item {
|
delegate: Item {
|
||||||
id: txtDelegate
|
id: txtDelegate
|
||||||
width: suggWord.contentWidth
|
width: suggWord.contentWidth
|
||||||
|
|
Loading…
Reference in New Issue