summaryrefslogtreecommitdiff
path: root/src/gc.c
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-14 16:48:58 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-14 16:48:58 +0000
commit4b339f0a4311b4db171584bc6671292a9052665a (patch)
treebd48cdf361c0881f45d09ce46c478ad8674e87c1 /src/gc.c
parentcfa9fa24253b5ef8045172852509be413d7b00ca (diff)
Diffstat (limited to 'src/gc.c')
-rw-r--r--src/gc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gc.c b/src/gc.c
index 2cdf838..4b10a52 100644
--- a/src/gc.c
+++ b/src/gc.c
@@ -48,6 +48,7 @@ in this Software without prior written authorization from The Open Group.
/** TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE **/
/** OR PERFORMANCE OF THIS SOFTWARE. **/
/*****************************************************************************/
+/* $XFree86: xc/programs/twm/gc.c,v 1.6 2001/12/14 20:01:07 dawes Exp $ */
/**********************************************************************
@@ -64,6 +65,7 @@ in this Software without prior written authorization from The Open Group.
#include "twm.h"
#include "util.h"
#include "screen.h"
+#include "gc.h"
/***********************************************************************
*
@@ -99,7 +101,8 @@ CreateGCs()
gcm = 0;
gcm |= GCForeground; gcv.foreground = Scr->MenuC.fore;
gcm |= GCBackground; gcv.background = Scr->MenuC.back;
- gcm |= GCFont; gcv.font = Scr->MenuFont.font->fid;
+ if (!use_fontset)
+ {gcm |= GCFont; gcv.font = Scr->MenuFont.font->fid;}
Scr->MenuGC = XCreateGC(dpy, Scr->Root, gcm, &gcv);