mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Allow larger tanks (change maximum from 200 to 300 cuft)
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>
This commit is contained in:
parent
912ce7941f
commit
56a24917cb
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue