From 14b91aa04bced778e1ef886ec176bf2d9daf7fdc Mon Sep 17 00:00:00 2001 From: Konstantin Date: Tue, 29 Apr 2014 20:49:40 +0200 Subject: [PATCH] Remove 0,0,0 entry --- interface/src/Application.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index ee4862d515..1138c6b183 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -3582,9 +3582,6 @@ void Application::urlGoTo(int argc, const char * constArgv[]) { // location coordinates or place name QString domain = urlParts[0]; Menu::goToDomain(domain); - // as there are no coordinates, go to 0,0,0 - QString destination = "0,0,0"; - Menu::goTo(destination); } else if (urlParts.count() > 1) { // if url has 2 or more parts, the first one is domain name QString domain = urlParts[0];