mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Fix theme switching with Firefox
This commit is contained in:
parent
630f4f4b2f
commit
0e6e7cd069
1 changed files with 2 additions and 2 deletions
|
|
@ -83,9 +83,9 @@ options.initGeneralSettings = function() {
|
|||
$('#tab-general-settings select#colorTheme').val(options.settings['colorTheme']);
|
||||
}
|
||||
|
||||
$('#tab-general-settings select:first').change(function() {
|
||||
$('#tab-general-settings select:first').change(async function() {
|
||||
options.settings['colorTheme'] = $(this).val();
|
||||
options.saveSettings();
|
||||
await options.saveSettingsPromise();
|
||||
location.reload();
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue