summaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2013-05-16 15:42:20 -0300
committerGravatar Tomaz Canabrava <tcanabrava@kde.org>2013-05-16 15:42:20 -0300
commit30297ebd4bbe9d3048e7c4401b3b4b22c24305e0 (patch)
treeb34cba0f93ce51829c714020a4363b3076bdd6ed /profile.c
parenta55a2e5d88c2e822f64e36b96910632b37ba8d6d (diff)
downloadsubsurface-30297ebd4bbe9d3048e7c4401b3b4b22c24305e0.tar.gz
Correctly set the unselected dive.
The selected dive was being set to zero when the program started, but zero is actually the first dive. There were workarounds on the gtk code for that probably Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.c b/profile.c
index 276641bb2..41e6724bb 100644
--- a/profile.c
+++ b/profile.c
@@ -15,7 +15,7 @@
#include "libdivecomputer/parser.h"
#include "libdivecomputer/version.h"
-int selected_dive = 0;
+int selected_dive = -1;
char zoomed_plot = 0;
char dc_number = 0;