From 1730064ed3a38f5b4467d80df3cb645d12b858ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Mon, 14 Feb 2011 08:21:30 +0100 Subject: Avoid too wide items in symbol menus. --- liblogdiag/ld-library-toolbar.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/liblogdiag/ld-library-toolbar.c b/liblogdiag/ld-library-toolbar.c index 2c4281a..4ce348d 100644 --- a/liblogdiag/ld-library-toolbar.c +++ b/liblogdiag/ld-library-toolbar.c @@ -606,6 +606,8 @@ on_category_toggle (GtkToggleButton *toggle_button, gpointer user_data) */ item->scale = data->menu_height * 0.5 / MAX (ABS (area.y), ABS (area.y + area.height)) * 0.5; + if (item->scale * area.width > 1.5 * data->menu_height) + item->scale = 1.5 * data->menu_height / area.width; item->width = data->menu_height * 0.5 + item->scale * area.width; item->dx = item->width * 0.5 + item->scale * (area.width * 0.5 - ABS (area.x + area.width)); -- cgit v1.2.3