Compare commits

...

5 Commits

Author SHA1 Message Date
vladimir.kuznetsov 25785bfe74 added color behavior for drawer 2023-10-23 14:27:08 +05:00
pokamest 89cf03ca26 Merge pull request #388 from amnezia-vpn/bugfix/updated_drawer_height_pageserverdata
updated drawer height of PageSettingsServerData
2023-10-21 06:23:35 -07:00
pokamest 74da944c68 Merge pull request #389 from amnezia-vpn/bugfix/adapted_awg_questiondrawer
adapted awg-questiondrawer with drawer2type
2023-10-21 06:22:44 -07:00
ronoaer e6ecfaf171 adapted awg-questiondrawer with drawer2type 2023-10-21 16:11:54 +08:00
ronoaer 9d2b01ef48 updated drawer height of PageSettingsServerData 2023-10-21 10:34:45 +08:00
3 changed files with 8 additions and 3 deletions
+4
View File
@@ -57,6 +57,10 @@ Item {
border.width: 1 border.width: 1
visible: true visible: true
Behavior on color {
PropertyAnimation { duration: 200 }
}
MouseArea { MouseArea {
id: fullMouseArea id: fullMouseArea
anchors.fill: parent anchors.fill: parent
@@ -286,9 +286,9 @@ PageType {
InstallController.removeCurrentlyProcessedContainer() InstallController.removeCurrentlyProcessedContainer()
} }
questionDrawer.noButtonFunction = function() { questionDrawer.noButtonFunction = function() {
questionDrawer.visible = false questionDrawer.close()
} }
questionDrawer.visible = true questionDrawer.open()
} }
} }
@@ -324,6 +324,7 @@ PageType {
QuestionDrawer { QuestionDrawer {
id: questionDrawer id: questionDrawer
parent: root
} }
} }
} }
@@ -195,7 +195,7 @@ PageType {
QuestionDrawer { QuestionDrawer {
id: questionDrawer id: questionDrawer
drawerHeight: 0.5 drawerHeight: 0.6
parent: questionDrawerParent parent: questionDrawerParent
} }