Merge branch 'productionsGame' of github.com:QuasarApp/ViewSolutions into productionsGame
All checks were successful
buildbot/DocsGenerator Build finished.
buildbot/LinuxCMakeBuilderQt6 Build finished.

This commit is contained in:
Andrei Yankovich 2025-02-18 14:15:15 +01:00
commit 13a97d860c
2 changed files with 2 additions and 3 deletions

View File

@ -17,7 +17,6 @@ Control {
// shows close button on the ActivityProcessor header
property bool closeButton: true
property bool closeButtonBorder: false
// attach to this property link to ActivityProcessor (if is it not to abble atomaticaly)
property var activityProcessorLink: null

View File

@ -63,8 +63,8 @@ Pane {
padding: 0
id: stackView
implicitWidth: stackView.currentItem.implicitWidth
implicitHeight: stackView.currentItem.implicitHeight
implicitWidth: (stackView.currentItem)? stackView.currentItem.implicitWidth: 0
implicitHeight: (stackView.currentItem)? stackView.currentItem.implicitHeight: 0
property int durationAnimation: 400
popEnter: Transition {