summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2013-01-23 11:58:51 -0500
committerAdam Jackson <ajax@redhat.com>2013-01-23 11:58:51 -0500
commitc4f7cdfd9d877ac6e476b3063b8248be40a86dee (patch)
treeac3f4962de227a6890705bd02eb61b85b03deb7d
parent5df19cb740e8a9a3744841988bbd51b22a2c2fac (diff)
Fix an obvious copypasta bug
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--GLwDrawA.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/GLwDrawA.c b/GLwDrawA.c
index b9ef47b..8ce12fb 100644
--- a/GLwDrawA.c
+++ b/GLwDrawA.c
@@ -474,7 +474,7 @@ static void Initialize(GLwDrawingAreaWidget req,GLwDrawingAreaWidget neww,ArgLis
/* fix size */
if(req->core.width==0) neww->core.width=100;
- if(req->core.height==0) neww->core.width=100;
+ if(req->core.height==0) neww->core.height=100;
/* create the attribute list if needed */
neww->glwDrawingArea.myList=FALSE;