mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 05:52:38 +02:00
Open feed in tablet after sharing snapshot from tablet
This commit is contained in:
parent
069ebaedf0
commit
c618e8e001
1 changed files with 7 additions and 1 deletions
|
@ -33,7 +33,13 @@ function shouldOpenFeedAfterShare() {
|
|||
return persisted && (persisted !== 'false');
|
||||
}
|
||||
function showFeedWindow() {
|
||||
DialogsManager.showFeed();
|
||||
if ((HMD.active && Settings.getValue("hmdTabletBecomesToolbar"))
|
||||
|| (!HMD.active && Settings.getValue("desktopTabletBecomesToolbar"))) {
|
||||
DialogsManager.showFeed();
|
||||
} else {
|
||||
tablet.loadQMLSource("TabletAddressDialog.qml");
|
||||
HMD.openTablet();
|
||||
}
|
||||
}
|
||||
|
||||
var outstanding;
|
||||
|
|
Loading…
Reference in a new issue