Remove non-functional VIRT_VIEWER_HIDE env behavior

VIRT_VIEWER_HIDE could be set as an environment variable to (theoretically) hide
displays whenever they were not ready.  Unfortunately, this bit of functionality
appears bitrotten and doesn't work anymore (it prevents windows from opening
when you click 'view > displays > display 2', for instance).
This commit is contained in:
Jonathon Jongsma 2013-11-20 16:58:50 -06:00
parent 36c558f6c2
commit d1df937e01

View File

@ -803,9 +803,6 @@ display_show_hint(VirtViewerDisplay *display,
virt_viewer_notebook_show_display(nb);
virt_viewer_window_show(win);
} else {
if (win != self->priv->main_window &&
g_getenv("VIRT_VIEWER_HIDE"))
virt_viewer_window_hide(win);
if (!self->priv->kiosk)
virt_viewer_notebook_show_status(nb, _("Waiting for display %d..."), nth + 1);
}