Handle WM_SYSCOLORCHANGE if using system colours. (Resets the whole palette,
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Fri, 27 Aug 2004 12:24:08 +0000 (12:24 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Fri, 27 Aug 2004 12:24:08 +0000 (12:24 +0000)
whereas ideally it would restrict itself to the affected colour slots.)

git-svn-id: svn://svn.tartarus.org/sgt/putty@4505 cda61777-01e9-0310-a592-d414129be87e

window.c

index d4ebcf5..ef19552 100644 (file)
--- a/window.c
+++ b/window.c
@@ -2767,6 +2767,16 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
            return TRUE;
        }
        break;
+      case WM_SYSCOLORCHANGE:
+       if (cfg.system_colour) {
+           /* Refresh palette from system colours. */
+           /* XXX actually this zaps the entire palette. */
+           systopalette();
+           init_palette();
+           /* Force a repaint of the terminal window. */
+           term_invalidate(term);
+       }
+       break;
       case WM_AGENT_CALLBACK:
        {
            struct agent_callback *c = (struct agent_callback *)lParam;