From e494302cdce8a1449df92bc138f8368d720d6927 Mon Sep 17 00:00:00 2001 From: Benjamin Schaaf Date: Mon, 13 Dec 2021 22:58:53 +1100 Subject: [PATCH] Disable flash by default The current flash implementation isn't great so should be disabled by default for now. --- data/camera.ui | 2 +- src/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/camera.ui b/data/camera.ui index 13140cf..b895e5c 100644 --- a/data/camera.ui +++ b/data/camera.ui @@ -62,7 +62,7 @@ start - flash-enabled-symbolic + flash-disabled-symbolic diff --git a/src/main.c b/src/main.c index e3bea15..7609a93 100644 --- a/src/main.c +++ b/src/main.c @@ -53,7 +53,7 @@ static int exposure; static bool has_auto_focus_continuous; static bool has_auto_focus_start; -static bool flash_enabled = true; +static bool flash_enabled = false; static bool setting_save_dng;