[Motiftools-xmt-cvs] CVS: xmt/Xmt ExtWidgets.c,1.10,1.11
Brought to you by:
motiftools
From: Grant M. <grm...@us...> - 2003-10-27 20:23:39
|
Update of /cvsroot/motiftools/xmt/Xmt In directory sc8-pr-cvs1:/tmp/cvs-serv8823 Modified Files: ExtWidgets.c Log Message: XmtINSENSITIVE_GRAY dynamic pixmap creation was not done unless both the widget and an ancestor were insensitive Index: ExtWidgets.c =================================================================== RCS file: /cvsroot/motiftools/xmt/Xmt/ExtWidgets.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** ExtWidgets.c 25 Oct 2003 00:41:09 -0000 1.10 --- ExtWidgets.c 27 Oct 2003 20:18:21 -0000 1.11 *************** *** 12,15 **** --- 12,19 ---- * * $Log$ + * Revision 1.11 2003/10/27 20:18:21 grmcdorman + * XmtINSENSITIVE_GRAY dynamic pixmap creation was not done unless + * both the widget and an ancestor were insensitive + * * Revision 1.10 2003/10/25 00:41:09 grmcdorman * Clean up some warnings *************** *** 109,113 **** /* Allocate insensitive pixmaps if required. */ if (elw->check_mask && lw->core.window != None && ! !lw->core.sensitive && !lw->core.ancestor_sensitive) { XmtIExtCheckPixmapInsens(elw, lw); elw->check_mask = False; --- 113,117 ---- /* Allocate insensitive pixmaps if required. */ if (elw->check_mask && lw->core.window != None && ! (!lw->core.sensitive || !lw->core.ancestor_sensitive)) { XmtIExtCheckPixmapInsens(elw, lw); elw->check_mask = False; |