diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-10-30 21:48:01 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-10-30 21:48:01 +0100 |
commit | 09419b6f28bb7058c43501d1e1e10b71ef2499ab (patch) | |
tree | 0ee2f11f34cdbe62e09c3969af6be394c576df07 /src | |
parent | ea2c78254d2c487d838b23e90dd3672dfd6939fc (diff) |
increase max focal length
Diffstat (limited to 'src')
-rw-r--r-- | src/gipfel.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gipfel.cxx b/src/gipfel.cxx index 343d19f..3c204b7 100644 --- a/src/gipfel.cxx +++ b/src/gipfel.cxx @@ -230,12 +230,12 @@ create_control_window() { Fl_Box *west = new Fl_Box(0, 125, 40, 20, "West"); - s_focal_length = new Fl_Value_Slider(235, 60, 160, 15, "Focal Length In 35mm"); + s_focal_length = new Fl_Value_Slider(235, 60, 160, 15, "Focal Length in 35mm"); s_focal_length->type(1); s_focal_length->box(FL_THIN_DOWN_BOX); s_focal_length->labelsize(10); s_focal_length->step(0.01); - s_focal_length->bounds(1.0, 200.0); + s_focal_length->bounds(1.0, 300.0); s_focal_length->slider(FL_UP_BOX); s_focal_length->callback((Fl_Callback*)focal_length_cb); s_focal_length->align(FL_ALIGN_TOP); |