mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 22:44:15 +02:00
force on to home screen
This commit is contained in:
parent
cb1505d51e
commit
2cd194104f
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ void TabletProxy::popFromStack() {
|
|||
}
|
||||
|
||||
void TabletProxy::loadHomeScreen(bool forceOntoHomeScreen) {
|
||||
if (_state != State::Home && ( _state != State::Uninitialized || forceOntoHomeScreen)) {
|
||||
if ((_state != State::Home && _state != State::Uninitialized) || forceOntoHomeScreen) {
|
||||
if (!_toolbarMode && _qmlTabletRoot) {
|
||||
auto loader = _qmlTabletRoot->findChild<QQuickItem*>("loader");
|
||||
QObject::connect(loader, SIGNAL(loaded()), this, SLOT(addButtonsToHomeScreen()), Qt::DirectConnection);
|
||||
|
|
Loading…
Reference in a new issue