summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <waker@users.sourceforge.net>2013-10-27 18:55:17 +0100
committerGravatar Alexey Yakovenko <waker@users.sourceforge.net>2013-10-27 18:55:17 +0100
commit958259c60911e18e48b3be1739d65ae47154a631 (patch)
treed3214556cce4beb2c13d30ce3e95cbf811a148c2 /plugins
parent476bb04cbbacee2d68bbe3e66de9a948e643f4eb (diff)
gtkui: fixed eq "preamp" text rendering
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gtkui/ddbequalizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gtkui/ddbequalizer.c b/plugins/gtkui/ddbequalizer.c
index d185833a..0c8198b4 100644
--- a/plugins/gtkui/ddbequalizer.c
+++ b/plugins/gtkui/ddbequalizer.c
@@ -261,7 +261,7 @@ static gboolean ddb_equalizer_real_draw (GtkWidget *widget, cairo_t *cr) {
cairo_save (cr);
pango_layout_set_text (l, "preamp", 6);
pango_layout_set_alignment (l, PANGO_ALIGN_LEFT);
- cairo_move_to (cr, 1, height-self->priv->eq_margin_bottom+2);
+ cairo_move_to (cr, 1, height-self->priv->eq_margin_bottom-2);
pango_cairo_show_layout (cr, l);
cairo_restore (cr);