aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-31 15:35:28 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-31 15:35:28 -0700
commita39b2ee220cd23d4d6ed52f23e50fee0d4381a93 (patch)
treebfb9c01bc9f77045c3fa2c214d668764415de492 /main.c
parentc7e29063722a57211e00acc5ee98e05c37f89a99 (diff)
downloadsubsurface-a39b2ee220cd23d4d6ed52f23e50fee0d4381a93.tar.gz
Add some more dive info - and actually update it
It's still the ugliest application ever, but now it at least gives you some basic dive info. I'd love to add a way to edit the dives to add new data (name, buddies, location etc), but that would also require the ability to save the end result. Maybe some day. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'main.c')
-rw-r--r--main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c
index d3853faab..6a82c6f93 100644
--- a/main.c
+++ b/main.c
@@ -51,6 +51,7 @@ static GtkWidget *dive_profile;
void repaint_dive(void)
{
+ update_dive_info(current_dive);
gtk_widget_queue_draw(dive_profile);
}