diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2012-12-10 11:02:33 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-12-10 11:02:33 -0800 |
commit | 0ae16899defc383eaedacf20f5ba03719d1e9322 (patch) | |
tree | 8dbac988f51d2842d71c8d66adfbcb5fde140624 /gtk-gui.c | |
parent | 7cf1960336011b8ef702c3bc2458b27db0fc1a4e (diff) | |
download | subsurface-0ae16899defc383eaedacf20f5ba03719d1e9322.tar.gz |
Don't draw tooltips if no profile is displayed
This fixes ticket 33
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'gtk-gui.c')
-rw-r--r-- | gtk-gui.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1302,6 +1302,10 @@ static gboolean profile_tooltip (GtkWidget *widget, gint x, gint y, if (tx < 0 || ty < 0) return FALSE; + /* don't draw a tooltip if nothing is there */ + if (gc->pi.nr == 0) + return FALSE; + width = drawing_area->width - 2*drawing_area->x; height = drawing_area->height - 2*drawing_area->y; if (width <= 0 || height <= 0) |