summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2019-06-26 13:19:13 +0200
committerMarcus Meissner <marcus@jet.franken.de>2019-06-26 13:19:13 +0200
commit23f1160080a98bbd0dc41706acf3ce9601e54d8e (patch)
treeb02a7a223676882b7c0e52022c628ad11a4ddf5c
parent923b9e9480b402f2352c06e06847b50a94673201 (diff)
downloadlibgphoto2-23f1160080a98bbd0dc41706acf3ce9601e54d8e.tar.gz
focal >= aperture
-rw-r--r--camlibs/lumix/lumix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/camlibs/lumix/lumix.c b/camlibs/lumix/lumix.c
index 3fbfe8424..25895b2ef 100644
--- a/camlibs/lumix/lumix.c
+++ b/camlibs/lumix/lumix.c
@@ -438,7 +438,7 @@ Get_ShutterSpeed(Camera *camera) {
}
static char*
-Get_Focal(Camera *camera) {
+Get_Aperture(Camera *camera) {
return loadCmd(camera,"cam.cgi?mode=getsetting&type=focal");
}
@@ -899,9 +899,9 @@ camera_config_get (Camera *camera, CameraWidget **window, GPContext *context)
gp_widget_set_value (widget, Get_ShutterSpeed(camera));
gp_widget_append (section, widget);
- gp_widget_new (GP_WIDGET_TEXT, _("Focal Length"), &widget);
- gp_widget_set_name (widget, "focal");
- gp_widget_set_value (widget, Get_Focal(camera));
+ gp_widget_new (GP_WIDGET_TEXT, _("Aperture"), &widget);
+ gp_widget_set_name (widget, "aperture");
+ gp_widget_set_value (widget, Get_Aperture(camera));
gp_widget_append (section, widget);
gp_widget_new (GP_WIDGET_TEXT, _("Autofocus Mode"), &widget);