]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Allow larger tanks (change maximum from 200 to 300 cuft)
authorDirk Hohndel <dirk@hohndel.org>
Fri, 30 Sep 2011 00:42:58 +0000 (17:42 -0700)
committerDirk Hohndel <dirk@hohndel.org>
Fri, 30 Sep 2011 00:42:58 +0000 (17:42 -0700)
We don't handle doubles any different than single tanks - so while
200 cuft was a sane maximum size for a tank, once you dive with
doubles this logic fails.

We may or may not decide to implement special handling for doubles at some
point, but for now simply allow for tanks all the way up to double-150.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
equipment.c

index 5d5a3546cc7f090116c2372419e26089dce69a8b..da758a9d42b24bbe4c483d89b263c9cfdabc5f75 100644 (file)
@@ -369,7 +369,7 @@ static void cylinder_widget(int nr, GtkListStore *model)
        cylinder->description = GTK_COMBO_BOX(widget);
        g_signal_connect(widget, "changed", G_CALLBACK(cylinder_cb), cylinder);
 
-       widget = create_spinbutton(hbox, "Size", 0, 200, 0.1);
+       widget = create_spinbutton(hbox, "Size", 0, 300, 0.1);
        cylinder->size = GTK_SPIN_BUTTON(widget);
 
        widget = create_spinbutton(hbox, "Pressure", 0, 5000, 1);