if (newUser) {
// If we are a new user, just show the results in the same query
// tab. Otherwise, show in a new query tab
// to do this, we simple remove the only open tab, and re-open a
// new one
QueryTab selectedTab = getSelectedTab();
if (selectedTab != null) {
queryTabs.removeTab(selectedTab, false, true);
}
}