mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 12:14:00 +02:00
Don't show help on android. Hide menu bar
This commit is contained in:
parent
7fb28f4296
commit
a5a36b4b8f
2 changed files with 5 additions and 0 deletions
|
@ -2826,7 +2826,9 @@ void Application::handleSandboxStatus(QNetworkReply* reply) {
|
|||
|
||||
// If this is a first run we short-circuit the address passed in
|
||||
if (firstRun.get()) {
|
||||
#if !defined(Q_OS_ANDROID)
|
||||
showHelp();
|
||||
#endif
|
||||
if (sandboxIsRunning) {
|
||||
qCDebug(interfaceapp) << "Home sandbox appears to be running, going to Home.";
|
||||
DependencyManager::get<AddressManager>()->goToLocalSandbox();
|
||||
|
|
|
@ -72,6 +72,9 @@ void Basic2DWindowOpenGLDisplayPlugin::uncustomizeContext() {
|
|||
|
||||
bool Basic2DWindowOpenGLDisplayPlugin::internalActivate() {
|
||||
_framerateActions.clear();
|
||||
#if defined(Q_OS_ANDROID)
|
||||
_container->setFullscreen(nullptr, true);
|
||||
#endif
|
||||
_container->addMenuItem(PluginType::DISPLAY_PLUGIN, MENU_PATH(), FULLSCREEN,
|
||||
[this](bool clicked) {
|
||||
if (clicked) {
|
||||
|
|
Loading…
Reference in a new issue