summaryrefslogtreecommitdiff
path: root/src/gtkext
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-05-06 00:19:51 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-05-06 00:19:51 (GMT)
commitc5a2674cd52e4eea66154c6fea931d5cc5c1852e (patch)
treee2d5a66af15e32db2b545e917284ae64cdf876ab /src/gtkext
parentd76e89e102aacfe945b44eb3150cb9f4bbf7b613 (diff)
Allowed to customize the size of tooltips over buffer views.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@531 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gtkext')
-rw-r--r--src/gtkext/gtkbufferview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkext/gtkbufferview.c b/src/gtkext/gtkbufferview.c
index 8e4ffd4..1b57341 100644
--- a/src/gtkext/gtkbufferview.c
+++ b/src/gtkext/gtkbufferview.c
@@ -587,7 +587,7 @@ static gboolean gtk_buffer_view_query_tooltip(GtkWidget *widget, gint x, gint y,
if (g_binary_format_find_next_symbol_at(format, &addr, &next_sym))
stop_addr = get_mrange_addr(g_binary_symbol_get_range(next_sym));
- count = 4;
+ g_generic_config_get_value(get_main_configuration(), MPK_TOOLTIP_SIZE, &count);
markup = NULL;