From 1f9bfdf65fd43e80975aeb8eea37a427e379785a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ji=C5=99=C3=AD=20Techet?= Date: Thu, 18 Feb 2016 22:12:56 +0100 Subject: [PATCH] Set push_in parameter to false This behaves a bit strangely when the list is long and when clicked at the bottom of the screen (the top part of the popup is empty). --- src/symbols.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/symbols.c b/src/symbols.c index 34663d496..a6ce0309e 100644 --- a/src/symbols.c +++ b/src/symbols.c @@ -1892,7 +1892,7 @@ static void goto_popup_position_func(GtkMenu *menu, gint *x, gint *y, gboolean * *x += pos_x; *y += pos_y + line_height; - *push_in = TRUE; + *push_in = FALSE; } -- 2.11.4.GIT