/* A window has been minimized... hide the hud associated with it */
        public void WindowMinimized(string windowTitle)
        {
            WriteDebug(WRITE_DEBUG, "Minimized: " + windowTitle);
            Table t = FindTableByWindowTitle(windowTitle);

            if (t != null)
            {
                SetHudVisible(t, false);
                t.HideTableDisplayWindow();
            }
        }
Exemple #2
0
        /* A window has been minimized... hide the hud associated with it */
        public void WindowMinimized(string windowTitle)
        {
            Trace.WriteLine("Minimized: " + windowTitle);
            Table t = FindTableByWindowTitle(windowTitle);

            if (t != null)
            {
                SetHudVisible(t, false);
                t.HideTableDisplayWindow();
            }
        }