fix: hide private channels when creating a community

This commit is contained in:
Richard Ramos 2021-05-24 15:33:39 -04:00 committed by Iuri Matias
parent aebfaef72e
commit f6302928de
1 changed files with 3 additions and 2 deletions

View File

@ -15,7 +15,7 @@ ModalPopup {
descriptionTextArea.isValid
id: popup
height: 600
height: 500
onOpened: {
nameInput.text = "";
@ -136,6 +136,7 @@ ModalPopup {
id: privateSwitcher
height: privateSwitch.height
width: parent.width
visible: false
anchors.top: separator1.bottom
anchors.topMargin: Style.current.smallPadding * 2
@ -153,7 +154,7 @@ ModalPopup {
StyledText {
id: privateExplanation
anchors.top: privateSwitcher.bottom
anchors.top: separator1.bottom
color: Style.current.secondaryText
wrapMode: Text.WordWrap
anchors.topMargin: Style.current.smallPadding * 2