--- deliantra/Deliantra-Client/DC/UI.pm 2006/04/09 22:24:43 1.47 +++ deliantra/Deliantra-Client/DC/UI.pm 2006/04/09 22:26:09 1.48 @@ -82,14 +82,15 @@ glTranslate $self->{x}, $self->{y}, 0; $self->_draw; if ($self == $::HOVER) { - glColor 1, 1, 1, 1; - glBegin GL_LINES; + glColor 1, 1, 1, 0.4; + glEnable GL_BLEND; + glBegin GL_QUADS; glVertex 0, 0; glVertex $self->{w} - 1, 0; glVertex $self->{w} - 1, $self->{h} - 1; glVertex 0, $self->{h} - 1; - glVertex 0, 0; glEnd; + glDisable GL_BLEND; } glPopMatrix; }