This commit is contained in:
zhuzichu
2023-04-22 16:02:52 +08:00
parent f7c17a27b6
commit a27e5db032
68 changed files with 176 additions and 175 deletions

View File

@ -39,7 +39,6 @@ Button {
id:control
width: 30
height: 30
clip: true
implicitWidth: width
implicitHeight: height
padding: 0

View File

@ -509,6 +509,7 @@ Item {
onClicked: {
d.enableNavigationPanel = !d.enableNavigationPanel
}
visible: Layout.preferredWidth !== 0
Behavior on Layout.preferredWidth{
NumberAnimation{
duration: 167
@ -639,7 +640,7 @@ Item {
width: layout_list.width
clip: true
y:nav_app_bar.height
height: 38
height: autoSuggestBox ? 38 : 0
Loader{
id:loader_auto_suggest_box
anchors.centerIn: parent

View File

@ -48,7 +48,9 @@ Rectangle{
}
Behavior on height{
NumberAnimation{
duration: 200
duration: 167
easing.type: Easing.BezierSpline
easing.bezierCurve: [ 1, 0, 0, 0 ]
}
}
}

View File

@ -90,7 +90,7 @@ ApplicationWindow {
infoBar.showError(text,duration,moremsg);
}
function registerForPageResult(path){
function registerForWindowResult(path){
return helper.createRegister(window,path)
}