mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:47:30 +02:00
Merge pull request #10048 from ctrlaltdavid/open-feed-in-tablet
Open feed in tablet after sharing snapshot from tablet
This commit is contained in:
commit
63ccaee129
1 changed files with 7 additions and 1 deletions
|
@ -33,7 +33,13 @@ function shouldOpenFeedAfterShare() {
|
||||||
return persisted && (persisted !== 'false');
|
return persisted && (persisted !== 'false');
|
||||||
}
|
}
|
||||||
function showFeedWindow() {
|
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;
|
var outstanding;
|
||||||
|
|
Loading…
Reference in a new issue