Use CLR_ arguments to set initial colors for a window. Apparently the
authorChris Hanson <org/chris-hanson/cph>
Wed, 31 May 1995 00:17:27 +0000 (00:17 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 31 May 1995 00:17:27 +0000 (00:17 +0000)
value returned by GpiQueryBackColor is invalid on some displays.

v7/src/microcode/os2pm.c

index 18789ed198f207c10598897c9b6f0b14c5bc213e..a38ce4afd596d885a1f11f356682b376e6a30718 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: os2pm.c,v 1.17 1995/05/20 10:14:06 cph Exp $
+$Id: os2pm.c,v 1.18 1995/05/31 00:17:27 cph Exp $
 
 Copyright (c) 1994-95 Massachusetts Institute of Technology
 
@@ -3464,8 +3464,8 @@ create_ps (pst_t type, HDC hdc, qid_t qid)
   (PS_HANDLE (ps)) = hps;
   (PS_ID (ps)) = (allocate_id ((& psid_table), ps));
   (PS_QID (ps)) = qid;
-  (PS_FOREGROUND_COLOR (ps)) = (GpiQueryColor (hps));
-  (PS_BACKGROUND_COLOR (ps)) = (GpiQueryBackColor (hps));
+  (PS_FOREGROUND_COLOR (ps)) = CLR_DEFAULT;
+  (PS_BACKGROUND_COLOR (ps)) = CLR_BACKGROUND;
   (PS_VISUAL_TYPE (ps)) = type;
   (PS_VISUAL (ps)) = 0;
   (PS_CHAR_INCREMENTS (ps)) = 0;