diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-31 15:35:28 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-31 15:35:28 -0700 |
commit | a39b2ee220cd23d4d6ed52f23e50fee0d4381a93 (patch) | |
tree | bfb9c01bc9f77045c3fa2c214d668764415de492 /main.c | |
parent | c7e29063722a57211e00acc5ee98e05c37f89a99 (diff) | |
download | subsurface-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -51,6 +51,7 @@ static GtkWidget *dive_profile; void repaint_dive(void) { + update_dive_info(current_dive); gtk_widget_queue_draw(dive_profile); } |