Small fix (no functional change)

This commit is contained in:
QC 2014-08-02 20:57:05 +02:00
parent 7bebd1d7dd
commit 48f592b7c1
1 changed files with 1 additions and 2 deletions

View File

@ -165,7 +165,7 @@ void textbox_move ( textbox *tb, int x, int y )
void textbox_moveresize ( textbox *tb, int x, int y, int w, int h )
{
if ( tb->flags & TB_AUTOHEIGHT ) {
h = textbox_get_font_height ( tb );
h = textbox_get_height ( tb );
}
if ( tb->flags & TB_AUTOWIDTH ) {
@ -266,7 +266,6 @@ void textbox_draw ( textbox *tb )
if ( tb->flags & TB_CENTER ) {
x = ( tb->w - line_width ) / 2;
}
// Render the layout.
pango_xft_render_layout ( draw, &( tb->color_fg ), tb->layout, x, y );