From 23f1160080a98bbd0dc41706acf3ce9601e54d8e Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Wed, 26 Jun 2019 13:19:13 +0200 Subject: focal >= aperture --- camlibs/lumix/lumix.c | 8 ++++---- 1 file 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); -- cgit v1.2.1