Disable flash by default

The current flash implementation isn't great so should be disabled by
default for now.
This commit is contained in:
Benjamin Schaaf 2021-12-13 22:58:53 +11:00 committed by Martijn Braam
parent d1b647474c
commit 6e34b5b419
No known key found for this signature in database
GPG Key ID: C4280ACB000B060F
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@
<child> <child>
<object class="GtkButton" id="flash-controls-button"> <object class="GtkButton" id="flash-controls-button">
<property name="valign">start</property> <property name="valign">start</property>
<property name="icon-name">flash-enabled-symbolic</property> <property name="icon-name">flash-disabled-symbolic</property>
<style> <style>
<class name="circular"/> <class name="circular"/>
</style> </style>

View File

@ -53,7 +53,7 @@ static int exposure;
static bool has_auto_focus_continuous; static bool has_auto_focus_continuous;
static bool has_auto_focus_start; static bool has_auto_focus_start;
static bool flash_enabled = true; static bool flash_enabled = false;
static bool setting_save_dng; static bool setting_save_dng;